home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard;
-
- public class SubDBQueryData$JoinOb {
- // $FF: synthetic field
- private final SubDBQueryData this$0;
- private String _strSrcTable;
- private String _strSrcField;
- private String _strDstTable;
- private String _strDstField;
- private boolean _isWritten;
-
- SubDBQueryData$JoinOb(SubDBQueryData this$0, String srcTable, String srcField, String dstTable, String dstField) {
- this.this$0 = this$0;
- this.this$0 = this$0;
- this._strSrcTable = srcTable;
- this._strSrcField = srcField;
- this._strDstTable = dstTable;
- this._strDstField = dstField;
- this._isWritten = false;
- }
-
- SubDBQueryData$JoinOb(SubDBQueryData this$0) {
- this.this$0 = this$0;
- this.this$0 = this$0;
- }
-
- public String buildOnClause() {
- String result = "";
- result = this._strSrcTable + "." + this._strSrcField + " = " + this._strDstTable + "." + this._strDstField;
- return result;
- }
-
- public SubDBQueryData$JoinOb cloneJoin() {
- return new SubDBQueryData$JoinOb(this.this$0, this._strSrcTable, this._strSrcField, this._strDstTable, this._strDstField);
- }
-
- public String getSrcTable() {
- return this._strSrcTable;
- }
-
- public String getSrcField() {
- return this._strSrcField;
- }
-
- public String getDstTable() {
- return this._strDstTable;
- }
-
- public String getDstField() {
- return this._strDstField;
- }
-
- public boolean getIsWritten() {
- return this._isWritten;
- }
-
- public String getText() {
- return this._strSrcTable + "." + this._strSrcField + " -> " + this._strDstTable + "." + this._strDstField;
- }
-
- public void setSrcTable(String s) {
- this._strSrcTable = s;
- }
-
- public void setSrcField(String s) {
- this._strSrcField = s;
- }
-
- public void setDstTable(String s) {
- this._strDstTable = s;
- }
-
- public void setDstField(String s) {
- this._strDstField = s;
- }
-
- public void setIsWritten(boolean b) {
- this._isWritten = b;
- }
- }
-