| 1 19 package org.netbeans.xml.test.core.wizardoperator; 20 21 import org.netbeans.jellytools.WizardOperator; 22 import org.netbeans.jemmy.operators.JComboBoxOperator; 23 27 public class DTDOptionsWizardOperator extends WizardOperator{ 28 private JComboBoxOperator _publicID; 29 private JComboBoxOperator _systemID; 30 private JComboBoxOperator _documentRoot; 31 32 33 public DTDOptionsWizardOperator() { 34 super("New File"); 35 } 36 37 public JComboBoxOperator publicID(){ 38 if (_publicID==null) _publicID = new JComboBoxOperator(this,0); 39 return _publicID; 40 } 41 42 public JComboBoxOperator systemID(){ 43 if (_systemID==null) _systemID = new JComboBoxOperator(this, 1); 44 return _systemID; 45 } 46 public JComboBoxOperator documentRoot(){ 47 if (_documentRoot==null) _documentRoot = new JComboBoxOperator(this,2); 48 return _documentRoot; 49 } 50 51 } 52 | Popular Tags |