blob: 1042124dd8298b98c1d9626134d5de3a50364fb9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Takashi ITOH - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.gui.msaa.properties.methods.ia2;
import org.eclipse.actf.accservice.swtbridge.ia2.Accessible2;
import org.eclipse.actf.visualization.gui.msaa.properties.AccessibleObjectPropertySource;
import org.eclipse.actf.visualization.gui.msaa.properties.ObjectArrayPropertySource;
import org.eclipse.actf.visualization.gui.msaa.properties.fields.AbstractInputField;
import org.eclipse.actf.visualization.gui.msaa.properties.fields.IntegerField;
import org.eclipse.actf.visualization.gui.msaa.properties.methods.MethodData;
public class IA2LocalizedExtendedStatesMethod extends MethodData {
private Accessible2 accessible2;
private IntegerField maxLocalizedExtendedStatesField;
public IA2LocalizedExtendedStatesMethod(Accessible2 accessible2) {
super("localizedExtendedStates", true); //$NON-NLS-1$
this.accessible2 = accessible2;
maxLocalizedExtendedStatesField = new IntegerField("maxLocalizedExtendedStates",AccessibleObjectPropertySource.MAX_CHILD_PROPERTIES,0); //$NON-NLS-1$
setInputFields(new AbstractInputField[]{maxLocalizedExtendedStatesField});
}
public Object getResult() {
int maxLocalizedExtendedStates = maxLocalizedExtendedStatesField.getIntValue();
String[] strArray = accessible2.getLocalizedExtendedStates(maxLocalizedExtendedStates);
if( null != strArray ) {
return new ObjectArrayPropertySource(strArray);
}
return null;
}
}