Eclipseplugins
All Classes Functions Variables Pages
WizardMainPageConfiguration.java
1 package com.proalpha.pds.ui.wizards.wizardpages;
2 
3 import java.util.List;
4 
22  private String wizardTitle;
23  private String wizardDescription;
24  private String templateName;
25  private List<String> extensionList;
26  private String rootClass;
27  private boolean checkRepository;
28  private boolean supportRepositoryCreateButton;
29  private String thirdDigit;
30  private boolean checkFileNameLength;
31  private boolean checkLowerCase;
32 
33  public List<String> getExtensionList() {
34  return extensionList;
35  }
36 
37  public String getRootClass() {
38  return rootClass;
39  }
40 
41  public String getThirdDigit() {
42  return thirdDigit;
43  }
44 
45  public String getWizardDescription() {
46  return wizardDescription;
47  }
48 
49  public String getWizardTitle() {
50  return wizardTitle;
51  }
52 
53  public boolean isCheckRepository() {
54  return checkRepository;
55  }
56 
57  public boolean isSupportRepositoryCreateButton() {
58  return supportRepositoryCreateButton;
59  }
60 
61  public void setCheckRepository(boolean checkRepository) {
62  this.checkRepository = checkRepository;
63  }
64 
65  public void setExtensionList(List<String> extensionList) {
66  this.extensionList = extensionList;
67  }
68 
69  public void setRootClass(String rootClass) {
70  this.rootClass = rootClass;
71  }
72 
73  public void setSupportRepositoryCreateButton(boolean supportRepositoryCreateButton) {
74  this.supportRepositoryCreateButton = supportRepositoryCreateButton;
75  }
76 
77  public void setThirdDigit(String thirdDigit) {
78  this.thirdDigit = thirdDigit;
79  }
80 
81  public void setWizardDescription(String wizardDescription) {
82  this.wizardDescription = wizardDescription;
83  }
84 
85  public void setWizardTitle(String wizardTitle) {
86  this.wizardTitle = wizardTitle;
87  }
88 
89  public String getTemplateName() {
90  return templateName;
91  }
92 
93  public void setTemplateName(String templateName) {
94  this.templateName = templateName;
95  }
96 
97  public boolean isCheckFileNameLength() {
98  return checkFileNameLength;
99  }
100 
101  public void setCheckFileNameLength(boolean checkFileNameLength) {
102  this.checkFileNameLength = checkFileNameLength;
103  }
104 
105  public boolean isCheckLowerCase() {
106  return checkLowerCase;
107  }
108 
109  public void setCheckLowerCase(boolean checkLowerCase) {
110  this.checkLowerCase = checkLowerCase;
111  }
112 }