1 package com.proalpha.pds.ui.wizards.wizardpages;
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;
33 public List<String> getExtensionList() {
37 public String getRootClass() {
41 public String getThirdDigit() {
45 public String getWizardDescription() {
46 return wizardDescription;
49 public String getWizardTitle() {
53 public boolean isCheckRepository() {
54 return checkRepository;
57 public boolean isSupportRepositoryCreateButton() {
58 return supportRepositoryCreateButton;
61 public void setCheckRepository(
boolean checkRepository) {
62 this.checkRepository = checkRepository;
65 public void setExtensionList(List<String> extensionList) {
66 this.extensionList = extensionList;
69 public void setRootClass(String rootClass) {
70 this.rootClass = rootClass;
73 public void setSupportRepositoryCreateButton(
boolean supportRepositoryCreateButton) {
74 this.supportRepositoryCreateButton = supportRepositoryCreateButton;
77 public void setThirdDigit(String thirdDigit) {
78 this.thirdDigit = thirdDigit;
81 public void setWizardDescription(String wizardDescription) {
82 this.wizardDescription = wizardDescription;
85 public void setWizardTitle(String wizardTitle) {
86 this.wizardTitle = wizardTitle;
89 public String getTemplateName() {
93 public void setTemplateName(String templateName) {
94 this.templateName = templateName;
97 public boolean isCheckFileNameLength() {
98 return checkFileNameLength;
101 public void setCheckFileNameLength(
boolean checkFileNameLength) {
102 this.checkFileNameLength = checkFileNameLength;
105 public boolean isCheckLowerCase() {
106 return checkLowerCase;
109 public void setCheckLowerCase(
boolean checkLowerCase) {
110 this.checkLowerCase = checkLowerCase;