blob: 88bfe8bd8697f637db5747a8ea055cf38a1fdc80 [file] [log] [blame]
/*
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package org.netbeans.jemmy.operators;
import java.awt.Container;
import javax.swing.JCheckBox;
import org.netbeans.jemmy.ComponentChooser;
import org.netbeans.jemmy.TimeoutExpiredException;
/**
*
* <BR><BR>Timeouts used: <BR>
* AbstractButtonOperator.PushButtonTimeout - time between button pressing and
* releasing<BR>
* ComponentOperator.WaitComponentTimeout - time to wait button displayed <BR>
* ComponentOperator.WaitComponentEnabledTimeout - time to wait button enabled
* <BR>.
*
* @see org.netbeans.jemmy.Timeouts
*
* @author Alexandre Iline (alexandre.iline@oracle.com)
*
*/
public class JCheckBoxOperator extends JToggleButtonOperator {
/**
* Constructor.
*
* @param b a component
*/
public JCheckBoxOperator(JCheckBox b) {
super(b);
}
/**
* Constructs a JCheckBoxOperator object.
*
* @param cont a container
* @param chooser a component chooser specifying searching criteria.
* @param index an index between appropriate ones.
*/
public JCheckBoxOperator(ContainerOperator<?> cont, ComponentChooser chooser, int index) {
this((JCheckBox) cont.
waitSubComponent(new JCheckBoxFinder(chooser),
index));
copyEnvironment(cont);
}
/**
* Constructs a JCheckBoxOperator object.
*
* @param cont a container
* @param chooser a component chooser specifying searching criteria.
*/
public JCheckBoxOperator(ContainerOperator<?> cont, ComponentChooser chooser) {
this(cont, chooser, 0);
}
/**
* Constructor. Waits component in container first. Uses cont's timeout and
* output for waiting and to init operator.
*
* @param cont a container
* @param text Button text.
* @param index Ordinal component index.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public JCheckBoxOperator(ContainerOperator<?> cont, String text, int index) {
this((JCheckBox) waitComponent(cont,
new JCheckBoxFinder(new AbstractButtonOperator.AbstractButtonByLabelFinder(text,
cont.getComparator())),
index));
copyEnvironment(cont);
}
/**
* Constructor. Waits component in container first. Uses cont's timeout and
* output for waiting and to init operator.
*
* @param cont a container
* @param text Button text.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public JCheckBoxOperator(ContainerOperator<?> cont, String text) {
this(cont, text, 0);
}
/**
* Constructor. Waits component in container first. Uses cont's timeout and
* output for waiting and to init operator.
*
* @param cont a container
* @param index Ordinal component index.
* @throws TimeoutExpiredException
*/
public JCheckBoxOperator(ContainerOperator<?> cont, int index) {
this((JCheckBox) waitComponent(cont,
new JCheckBoxFinder(),
index));
copyEnvironment(cont);
}
/**
* Constructor. Waits component in container first. Uses cont's timeout and
* output for waiting and to init operator.
*
* @param cont a container
* @throws TimeoutExpiredException
*/
public JCheckBoxOperator(ContainerOperator<?> cont) {
this(cont, 0);
}
/**
* Searches JCheckBox in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @return JCheckBox instance or null if component was not found.
*/
public static JCheckBox findJCheckBox(Container cont, ComponentChooser chooser, int index) {
return (JCheckBox) findJToggleButton(cont, new JCheckBoxFinder(chooser), index);
}
/**
* Searches 0'th JCheckBox in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @return JCheckBox instance or null if component was not found.
*/
public static JCheckBox findJCheckBox(Container cont, ComponentChooser chooser) {
return findJCheckBox(cont, chooser, 0);
}
/**
* Searches JCheckBox by text.
*
* @param cont Container to search component in.
* @param text Button text. If null, contents is not checked.
* @param ce Compare text exactly.
* @param ccs Compare text case sensitively.
* @param index Ordinal component index.
* @return JCheckBox instance or null if component was not found.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
*/
public static JCheckBox findJCheckBox(Container cont, String text, boolean ce, boolean ccs, int index) {
return (findJCheckBox(cont,
new JCheckBoxFinder(new AbstractButtonOperator.AbstractButtonByLabelFinder(text,
new DefaultStringComparator(ce, ccs))),
index));
}
/**
* Searches JCheckBox by text.
*
* @param cont Container to search component in.
* @param text Button text. If null, contents is not checked.
* @param ce Compare text exactly.
* @param ccs Compare text case sensitively.
* @return JCheckBox instance or null if component was not found.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
*/
public static JCheckBox findJCheckBox(Container cont, String text, boolean ce, boolean ccs) {
return findJCheckBox(cont, text, ce, ccs, 0);
}
/**
* Waits JCheckBox in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @return JCheckBox instance.
* @throws TimeoutExpiredException
*/
public static JCheckBox waitJCheckBox(Container cont, ComponentChooser chooser, int index) {
return (JCheckBox) waitJToggleButton(cont, new JCheckBoxFinder(chooser), index);
}
/**
* Waits 0'th JCheckBox in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @return JCheckBox instance.
* @throws TimeoutExpiredException
*/
public static JCheckBox waitJCheckBox(Container cont, ComponentChooser chooser) {
return waitJCheckBox(cont, chooser, 0);
}
/**
* Waits JCheckBox by text.
*
* @param cont Container to search component in.
* @param text Button text. If null, contents is not checked.
* @param ce Compare text exactly.
* @param ccs Compare text case sensitively.
* @param index Ordinal component index.
* @return JCheckBox instance.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public static JCheckBox waitJCheckBox(Container cont, String text, boolean ce, boolean ccs, int index) {
return (waitJCheckBox(cont,
new JCheckBoxFinder(new AbstractButtonOperator.AbstractButtonByLabelFinder(text,
new DefaultStringComparator(ce, ccs))),
index));
}
/**
* Waits JCheckBox by text.
*
* @param cont Container to search component in.
* @param text Button text. If null, contents is not checked.
* @param ce Compare text exactly.
* @param ccs Compare text case sensitively.
* @return JCheckBox instance.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public static JCheckBox waitJCheckBox(Container cont, String text, boolean ce, boolean ccs) {
return waitJCheckBox(cont, text, ce, ccs, 0);
}
/**
* Checks component type.
*/
public static class JCheckBoxFinder extends Finder {
/**
* Constructs JCheckBoxFinder.
*
* @param sf other searching criteria.
*/
public JCheckBoxFinder(ComponentChooser sf) {
super(JCheckBox.class, sf);
}
/**
* Constructs JCheckBoxFinder.
*/
public JCheckBoxFinder() {
super(JCheckBox.class);
}
}
}