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;
043:
044: import javax.swing.JDialog;
045: import org.netbeans.jemmy.operators.JButtonOperator;
046: import org.netbeans.jemmy.operators.JDialogOperator;
047:
048: /**
049: * Handle generic NetBeans dialog. The dialog can include Yes, No, OK,
050: * Cancel, Close or Help buttons. The dialog is identified by its title.
051: */
052: public class NbDialogOperator extends JDialogOperator {
053:
054: private JButtonOperator _btYes;
055: private JButtonOperator _btNo;
056: private JButtonOperator _btOK;
057: private JButtonOperator _btCancel;
058: private JButtonOperator _btClose;
059: private JButtonOperator _btHelp;
060:
061: /** Waits until dialog with requested title is found. Title is compared
062: * on partial match and case non-sensitive. If dialog is not found, runtime
063: * exception is thrown.
064: * @param title title of window
065: */
066: public NbDialogOperator(String title) {
067: super (title);
068: }
069:
070: /** Created NbDialogOperator with given dialog
071: * @param dialog JDialog instance */
072: public NbDialogOperator(JDialog dialog) {
073: super (dialog);
074: }
075:
076: /** Returns operator of "Yes" button.
077: * @return JButtonOperator instance of "Yes" button
078: */
079: public JButtonOperator btYes() {
080: if (_btYes == null) {
081: String yesCaption = Bundle.getString(
082: "org.netbeans.core.Bundle", "YES_OPTION_CAPTION");
083: _btYes = new JButtonOperator(this , yesCaption);
084: }
085: return _btYes;
086: }
087:
088: /** Returns operator of "No" button.
089: * @return JButtonOperator instance of "No" button
090: */
091: public JButtonOperator btNo() {
092: if (_btNo == null) {
093: String noCaption = Bundle.getString(
094: "org.netbeans.core.Bundle", "NO_OPTION_CAPTION");
095: _btNo = new JButtonOperator(this , noCaption);
096: }
097: return _btNo;
098: }
099:
100: /** Returns operator of "OK" button.
101: * @return JButtonOperator instance of "OK" button
102: */
103: public JButtonOperator btOK() {
104: if (_btOK == null) {
105: String oKCaption = Bundle.getString(
106: "org.netbeans.core.Bundle", "OK_OPTION_CAPTION");
107: _btOK = new JButtonOperator(this , oKCaption);
108: }
109: return _btOK;
110: }
111:
112: /** Returns operator of "Cancel" button.
113: * @return JButtonOperator instance of "Cancel" button
114: */
115: public JButtonOperator btCancel() {
116: if (_btCancel == null) {
117: String cancelCaption = Bundle
118: .getString("org.netbeans.core.Bundle",
119: "CANCEL_OPTION_CAPTION");
120: _btCancel = new JButtonOperator(this , cancelCaption);
121: }
122: return _btCancel;
123: }
124:
125: /** Returns operator of "Close" button.
126: * @return JButtonOperator instance of "Close" button
127: */
128: public JButtonOperator btClose() {
129: if (_btClose == null) {
130: String closeCaption = Bundle
131: .getString("org.netbeans.core.Bundle",
132: "CLOSED_OPTION_CAPTION");
133: _btClose = new JButtonOperator(this , closeCaption);
134: }
135: return _btClose;
136: }
137:
138: /** Returns operator of "Help" button.
139: * @return JButtonOperator instance of "Help" button
140: */
141: public JButtonOperator btHelp() {
142: if (_btHelp == null) {
143: String helpCaption = Bundle.getString(
144: "org.netbeans.core.Bundle", "HELP_OPTION_CAPTION");
145: _btHelp = new JButtonOperator(this , helpCaption);
146: }
147: return _btHelp;
148: }
149:
150: /** Pushes "Yes" button. */
151: public void yes() {
152: btYes().push();
153: }
154:
155: /** Pushes "No" button. */
156: public void no() {
157: btNo().push();
158: }
159:
160: /** Pushes "OK" button. */
161: public void ok() {
162: btOK().push();
163: }
164:
165: /** Pushes "Cancel" button. */
166: public void cancel() {
167: btCancel().push();
168: }
169:
170: /** Pushes "Close" button. Using {@link JDialogOperator#close() close()}
171: * will close dialog default way like on demand of a window manager.
172: */
173: public void closeByButton() {
174: btClose().push();
175: }
176:
177: /** Pushes "Help" button. */
178: public void help() {
179: btHelp().push();
180: }
181: }
|