001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.visualweb.gravy.dataconnectivity;
043:
044: import org.netbeans.jemmy.operators.JButtonOperator;
045: import org.netbeans.jemmy.operators.JComboBoxOperator;
046: import org.netbeans.jemmy.operators.JTextFieldOperator;
047: import org.netbeans.jemmy.operators.JRadioButtonOperator;
048: import org.netbeans.jemmy.JemmyException;
049: import org.netbeans.jellytools.Bundle;
050: import org.netbeans.jellytools.NbDialogOperator;
051:
052: /**
053: * This class implements test functionality for "Add Query Criteria" dialog
054: */
055: public class AddQueryCriteriaOperator extends NbDialogOperator {
056: private JComboBoxOperator _cboCompareType;
057: private JTextFieldOperator _txtValue, _txtParameter;
058: private JRadioButtonOperator _rbtValue, _rbtParameter;
059:
060: /**
061: * Creates new instance of this class.
062: */
063: public AddQueryCriteriaOperator() {
064: super (getBundleString("ADD_QUERY_CRITERIA_TITLE"));
065: }
066:
067: /**
068: * Initializes (if necessary) and returns an object JComboBoxOperator
069: * for the dialog drop-down list "Compare Type".
070: * @return the appropriate object JComboBoxOperator
071: */
072: public JComboBoxOperator cboCompareType() {
073: if (_cboCompareType == null) {
074: _cboCompareType = new JComboBoxOperator(this );
075: }
076: return _cboCompareType;
077: }
078:
079: /**
080: * Initializes (if necessary) and returns an object JTextFieldOperator
081: * for the dialog text field "Value".
082: * @return the appropriate object JTextFieldOperator
083: */
084: public JTextFieldOperator txtValue() {
085: if (_txtValue == null) {
086: _txtValue = new JTextFieldOperator(this , 0);
087: }
088: return _txtValue;
089: }
090:
091: /**
092: * Initializes (if necessary) and returns an object JTextFieldOperator
093: * for the dialog text field "Parameter".
094: * @return the appropriate object JTextFieldOperator
095: */
096: public JTextFieldOperator txtParameter() {
097: if (_txtParameter == null) {
098: _txtParameter = new JTextFieldOperator(this , 1);
099: }
100: return _txtParameter;
101: }
102:
103: /**
104: * Initializes (if necessary) and returns an object JRadioButtonOperator
105: * for the dialog radio-button "Value".
106: * @return the appropriate object JRadioButtonOperator
107: */
108: public JRadioButtonOperator rbtValue() {
109: if (_rbtValue == null) {
110: _rbtValue = new JRadioButtonOperator(this , 0);
111: }
112: return _rbtValue;
113: }
114:
115: /**
116: * Initializes (if necessary) and returns an object JRadioButtonOperator
117: * for the dialog radio-button "Parameter".
118: * @return the appropriate object JRadioButtonOperator
119: */
120: public JRadioButtonOperator rbtParameter() {
121: if (_rbtParameter == null) {
122: _rbtParameter = new JRadioButtonOperator(this , 1);
123: }
124: return _rbtParameter;
125: }
126:
127: /**
128: * Initializes all necessary controls.
129: */
130: public void verify() {
131: btOK();
132: btCancel();
133: btHelp();
134: txtValue();
135: txtParameter();
136: cboCompareType();
137: rbtValue();
138: rbtParameter();
139: }
140:
141: /**
142: * Finds in a bundle file and returns an actual text of control component.
143: * @param p_text string-key corresponding to required control component.
144: * @return actual text of control component
145: */
146: public static String getBundleString(String p_text) {
147: return QueryBuilderOperator.getBundleString(p_text);
148: }
149:
150: }
|