< prev index next >

core/JemmyCore/src/org/jemmy/input/StringMenuSelectableOwner.java

Print this page




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package org.jemmy.input;
  26 
  27 import org.jemmy.control.Wrap;
  28 import org.jemmy.interfaces.MenuSelectableOwner;
  29 import org.jemmy.lookup.LookupCriteria;
  30 
  31 /**
  32  *
  33  * @author erikgreijus
  34  * @param <T>
  35  */
  36 public abstract class StringMenuSelectableOwner<T> extends StringMenuOwner<T> implements MenuSelectableOwner<T> {
  37 
  38     private static final String MENU_PATH_LENGTH_ERROR = "Menu path length should be greater than 0";
  39 
  40     public StringMenuSelectableOwner(Wrap<?> menuOwner) {
  41         super(menuOwner);
  42     }
  43 
  44     /**
  45      * Ensures state of a menu item conforming to the criteria. That would mean
  46      * that all intermediate items get expanded and the menus are shown.
  47      * Selection depends on if the desired state matches the current state or
  48      * not. I.e selection of the last criteria happens only if the state differs
  49      * from desiredSelectionState
  50      *
  51      * @param desiredSelectionState The desired selection state of the leaf menu
  52      * item.
  53      * @param texts used one for one level. In case of a menu bar, for example,
  54      * first string is to be used to find a top level menu, second to find a




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package org.jemmy.input;
  26 
  27 import org.jemmy.control.Wrap;
  28 import org.jemmy.interfaces.MenuSelectableOwner;
  29 import org.jemmy.lookup.LookupCriteria;
  30 
  31 /**
  32  *
  33  * @author erikgreijus
  34  * @param <T> todo document
  35  */
  36 public abstract class StringMenuSelectableOwner<T> extends StringMenuOwner<T> implements MenuSelectableOwner<T> {
  37 
  38     private static final String MENU_PATH_LENGTH_ERROR = "Menu path length should be greater than 0";
  39 
  40     public StringMenuSelectableOwner(Wrap<?> menuOwner) {
  41         super(menuOwner);
  42     }
  43 
  44     /**
  45      * Ensures state of a menu item conforming to the criteria. That would mean
  46      * that all intermediate items get expanded and the menus are shown.
  47      * Selection depends on if the desired state matches the current state or
  48      * not. I.e selection of the last criteria happens only if the state differs
  49      * from desiredSelectionState
  50      *
  51      * @param desiredSelectionState The desired selection state of the leaf menu
  52      * item.
  53      * @param texts used one for one level. In case of a menu bar, for example,
  54      * first string is to be used to find a top level menu, second to find a


< prev index next >