blob: ed55c21e54792d5c9e49dab97397d3d5aa9b576d [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.JRadioButton;
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 JRadioButtonOperator extends JToggleButtonOperator {
/**
* Constructor.
*
* @param b a component
*/
public JRadioButtonOperator(JRadioButton b) {
super(b);
}
/**
* Constructs a JRadioButtonOperator object.
*
* @param cont a container
* @param chooser a component chooser specifying searching criteria.
* @param index an index between appropriate ones.
*/
public JRadioButtonOperator(ContainerOperator<?> cont, ComponentChooser chooser, int index) {
this((JRadioButton) cont.
waitSubComponent(new JRadioButtonFinder(chooser),
index));
copyEnvironment(cont);
}
/**
* Constructs a JRadioButtonOperator object.
*
* @param cont a container
* @param chooser a component chooser specifying searching criteria.
*/
public JRadioButtonOperator(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 JRadioButtonOperator(ContainerOperator<?> cont, String text, int index) {
this((JRadioButton) waitComponent(cont,
new JRadioButtonFinder(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 JRadioButtonOperator(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 JRadioButtonOperator(ContainerOperator<?> cont, int index) {
this((JRadioButton) waitComponent(cont,
new JRadioButtonFinder(),
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 JRadioButtonOperator(ContainerOperator<?> cont) {
this(cont, 0);
}
/**
* Searches JRadioButton in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @return JRadioButton instance or null if component was not found.
*/
public static JRadioButton findJRadioButton(Container cont, ComponentChooser chooser, int index) {
return (JRadioButton) findJToggleButton(cont, new JRadioButtonFinder(chooser), index);
}
/**
* Searches 0'th JRadioButton in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @return JRadioButton instance or null if component was not found.
*/
public static JRadioButton findJRadioButton(Container cont, ComponentChooser chooser) {
return findJRadioButton(cont, chooser, 0);
}
/**
* Searches JRadioButton 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 JRadioButton instance or null if component was not found.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
*/
public static JRadioButton findJRadioButton(Container cont, String text, boolean ce, boolean ccs, int index) {
return (findJRadioButton(cont,
new JRadioButtonFinder(new AbstractButtonOperator.AbstractButtonByLabelFinder(text,
new DefaultStringComparator(ce, ccs))),
index));
}
/**
* Searches JRadioButton 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 JRadioButton instance or null if component was not found.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
*/
public static JRadioButton findJRadioButton(Container cont, String text, boolean ce, boolean ccs) {
return findJRadioButton(cont, text, ce, ccs, 0);
}
/**
* Waits JRadioButton in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @return JRadioButton instance.
* @throws TimeoutExpiredException
*/
public static JRadioButton waitJRadioButton(Container cont, ComponentChooser chooser, int index) {
return (JRadioButton) waitJToggleButton(cont, new JRadioButtonFinder(chooser), index);
}
/**
* Waits 0'th JRadioButton in container.
*
* @param cont Container to search component in.
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @return JRadioButton instance.
* @throws TimeoutExpiredException
*/
public static JRadioButton waitJRadioButton(Container cont, ComponentChooser chooser) {
return waitJRadioButton(cont, chooser, 0);
}
/**
* Waits JRadioButton 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 JRadioButton instance.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public static JRadioButton waitJRadioButton(Container cont, String text, boolean ce, boolean ccs, int index) {
return (waitJRadioButton(cont,
new JRadioButtonFinder(new AbstractButtonOperator.AbstractButtonByLabelFinder(text,
new DefaultStringComparator(ce, ccs))),
index));
}
/**
* Waits JRadioButton 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 JRadioButton instance.
* @see ComponentOperator#isCaptionEqual(String, String, boolean, boolean)
* @throws TimeoutExpiredException
*/
public static JRadioButton waitJRadioButton(Container cont, String text, boolean ce, boolean ccs) {
return waitJRadioButton(cont, text, ce, ccs, 0);
}
/**
* Checks component type.
*/
public static class JRadioButtonFinder extends Finder {
/**
* Constructs JRadioButtonFinder.
*
* @param sf other searching criteria.
*/
public JRadioButtonFinder(ComponentChooser sf) {
super(JRadioButton.class, sf);
}
/**
* Constructs JRadioButtonFinder.
*/
public JRadioButtonFinder() {
super(JRadioButton.class);
}
}
}