mmarquee.automation.controls.menu.AutomationSystemMenu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-automation Show documentation
Show all versions of ui-automation Show documentation
A Java library that wraps the MS UIAutomation library.
/*
* Copyright 2016-17 [email protected]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package mmarquee.automation.controls.menu;
import com.sun.jna.ptr.PointerByReference;
import mmarquee.automation.AutomationElement;
import mmarquee.automation.AutomationException;
import mmarquee.automation.ControlType;
import mmarquee.automation.ItemNotFoundException;
import mmarquee.automation.controls.AutomationBase;
import mmarquee.automation.pattern.PatternNotFoundException;
import mmarquee.automation.uiautomation.TreeScope;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Mark Humphreys on 19/02/2016.
*
* Wrapper for the SystemMenu control element.
*/
public class AutomationSystemMenu extends AutomationBase {
/**
* Construct the AutomationSystemMenu
* @param element The element
* @throws AutomationException Automation issue
* @throws PatternNotFoundException Expected pattern not found
*/
public AutomationSystemMenu(AutomationElement element)
throws PatternNotFoundException, AutomationException {
super(element);
this.getItems();
}
public static ControlType controlType = ControlType.Menu;
/**
* Get the item associated with the name
*
* @param name The name to look for
* @return The menu item
* @throws AutomationException Automation issue
* @throws PatternNotFoundException Expected pattern not found
*/
public AutomationMenuItem getItem(String name) throws PatternNotFoundException, AutomationException {
PointerByReference condition = this.createTrueCondition();
List collection =
this.findAll(new TreeScope(TreeScope.Descendants), condition);
AutomationElement foundElement = null;
boolean found = false;
for (AutomationElement elem: collection) {
String eName = elem.getName();
if (eName.equals(name)) {
found = true;
foundElement = elem;
break;
}
}
if (found) {
return new AutomationMenuItem(foundElement);
} else {
// Throw an exception
throw new ItemNotFoundException(name);
}
}
/**
* Gets the items.
*
* @return The list of menu items
* @throws AutomationException Automation issue
* @throws PatternNotFoundException Expected pattern not found
*/
protected List getItems() throws PatternNotFoundException, AutomationException {
PointerByReference condition = this.createTrueCondition();
List items =
this.findAll(new TreeScope(TreeScope.Children), condition);
List list = new ArrayList();
for (AutomationElement item : items) {
list.add(new AutomationMenuItem(item));
}
return list;
}
}