com.sun.javafx.accessible.AccessibleText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-78-backport Show documentation
Show all versions of openjfx-78-backport Show documentation
This is a backport of OpenJFX 8 to run on Java 7.
The newest version!
/*
* Copyright (c) 2012, 2013, 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 com.sun.javafx.accessible;
import com.sun.javafx.accessible.utils.ControlTypeIds;
import com.sun.javafx.accessible.utils.PropertyIds;
import javafx.scene.text.Text;
public class AccessibleText extends AccessibleNode {
Text text;
public AccessibleText(Text text) {
super(text);
this.text = text ;
}
//
// Summary:
// Retrieves the value of a property supported by the UI Automation provider.
//
// Parameters:
// propertyId:
// The property identifier.
//
// Returns:
// The property value, or a null if the property is not supported by this provider,
// or System.Windows.Automation.AutomationElementIdentifiers.NotSupported if
// it is not supported at all.
@Override
public Object getPropertyValue(int propertyId)
{
Object retVal = null ;
switch(propertyId){
case PropertyIds.NAME:
case PropertyIds.DESCRIBED_BY:
retVal = (Object)this.text.getText() ;
break;
case PropertyIds.CONTROL_TYPE:
retVal = ControlTypeIds.TEXT;
break;
case PropertyIds.IS_KEYBOARD_FOCUSABLE:
retVal = true;
break;
case PropertyIds.HAS_KEYBOARD_FOCUS:
retVal = text.isFocused();
break;
case PropertyIds.IS_CONTROL_ELEMENT:
retVal = true;
break;
case PropertyIds.IS_ENABLED:
retVal = !text.isDisabled();
break;
case PropertyIds.CLASS_NAME:
retVal = this.getClass().toString();
break;
}
return retVal;
}
// Summary:
// Retrieves an object that provides support for a control pattern on a UI Automation
// element.
//
// Parameters:
// patternId:
// Identifier of the pattern.
//
// Returns:
// Object that implements the pattern interface, or null if the pattern is not
// supported.
@Override
public Object getPatternProvider(int patternId)
{
return null ;
}
}