home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- public class DefSearch extends DefAbstract {
- private int _buttonType;
- private int _buttonImage;
- private String _buttonText;
- private int _matching;
- private int _resultPage;
-
- public void setButtonType(int buttonType) {
- this._buttonType = buttonType;
- }
-
- public void setButtonImage(int buttonImage) {
- this._buttonImage = buttonImage;
- }
-
- public void setButtonText(String buttonText) {
- this._buttonText = buttonText;
- }
-
- public void setMatching(int matching) {
- this._matching = matching;
- }
-
- public void setResultPage(int resultPage) {
- this._resultPage = resultPage;
- }
-
- public int getButtonType() {
- return this._buttonType;
- }
-
- public int getButtonImage() {
- return this._buttonImage;
- }
-
- public String getButtonText() {
- return this._buttonText;
- }
-
- public int getMatching() {
- return this._matching;
- }
-
- public int getResultPage() {
- return this._resultPage;
- }
-
- public String getBaseName() {
- return "MSDBSearch";
- }
- }
-