home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- public class DefUpdate extends DefAbstract {
- private String _buttonAction;
- private String _buttonType;
- private int _buttonImage;
- private String _buttonText;
- private String _queryComponent;
- private String _tableName;
- private int _primaryKeyCount;
- private String[] _primaryKeyFieldNames;
- private String[] _primaryKeyFieldDataTypes;
- private int _successPage;
- private int _errorPage;
-
- public void setButtonAction(String buttonAction) {
- this._buttonAction = buttonAction;
- }
-
- public void setButtonType(String buttonType) {
- this._buttonType = buttonType;
- }
-
- public void setButtonImage(int buttonImage) {
- this._buttonImage = buttonImage;
- }
-
- public void setButtonText(String buttonText) {
- this._buttonText = buttonText;
- }
-
- public void setQueryComponent(String queryComponent) {
- this._queryComponent = queryComponent;
- }
-
- public void setTableName(String tableName) {
- this._tableName = tableName;
- }
-
- public void setPrimaryKeyCount(int primaryKeyCount) {
- this._primaryKeyCount = primaryKeyCount;
- }
-
- public void setPrimaryKeyFieldNames(String[] primaryKeyFieldNames) {
- this._primaryKeyFieldNames = primaryKeyFieldNames;
- }
-
- public void setPrimaryKeyFieldDataTypes(String[] primaryKeyFieldDataTypes) {
- this._primaryKeyFieldDataTypes = primaryKeyFieldDataTypes;
- }
-
- public void setSuccessPage(int successPage) {
- this._successPage = successPage;
- }
-
- public void setErrorPage(int errorPage) {
- this._errorPage = errorPage;
- }
-
- public String getButtonAction() {
- return this._buttonAction;
- }
-
- public String getButtonType() {
- return this._buttonType;
- }
-
- public String getButtonText() {
- return this._buttonText;
- }
-
- public String getQueryComponent() {
- return this._queryComponent;
- }
-
- public String getTableName() {
- return this._tableName;
- }
-
- public int getPrimaryKeyCount() {
- return this._primaryKeyCount;
- }
-
- public String[] getPrimaryKeyFieldNames() {
- return this._primaryKeyFieldNames;
- }
-
- public String[] getPrimarykeyFieldDataTypes() {
- return this._primaryKeyFieldDataTypes;
- }
-
- public int getSuccessPage() {
- return this._successPage;
- }
-
- public int getErrorPage() {
- return this._errorPage;
- }
-
- public String getBaseName() {
- return "MSDBUpdate";
- }
- }
-