1 19 24 package org.netbeans.jellytools.modules.xml.catalog; 25 26 import org.netbeans.jemmy.operators.*; 27 import org.netbeans.jellytools.*; 28 import org.netbeans.jellytools.properties.PropertySheetOperator; 29 30 35 public class NbCatalogCustomizerDialogOperator extends NbDialogOperator { 36 37 39 public NbCatalogCustomizerDialogOperator() { 40 super("Customizer Dialog"); 41 } 42 43 private JTextAreaOperator _txtSystemCatalogCustomizer$1; 44 45 46 50 53 public JTextAreaOperator txtSystemCatalogCustomizer$1() { 54 if (_txtSystemCatalogCustomizer$1==null) { 55 _txtSystemCatalogCustomizer$1 = new JTextAreaOperator(this); 56 } 57 return _txtSystemCatalogCustomizer$1; 58 } 59 60 61 65 68 public String getSystemCatalogCustomizer$1() { 69 return txtSystemCatalogCustomizer$1().getText(); 70 } 71 72 75 public void setSystemCatalogCustomizer$1(String text) { 76 txtSystemCatalogCustomizer$1().setText(text); 77 } 78 79 82 public void typeSystemCatalogCustomizer$1(String text) { 83 txtSystemCatalogCustomizer$1().typeText(text); 84 } 85 86 87 91 93 public void verify() { 94 txtSystemCatalogCustomizer$1(); 95 } 96 97 100 public static void main(String args[]) { 101 new NbCatalogCustomizerDialogOperator().verify(); 102 System.out.println("NbCatalogCustomizerDialogDialogOperator verification finished."); 103 } 104 } 105 106 | Popular Tags |