Package com.volantis.mcs.eclipse.controls

Examples of com.volantis.mcs.eclipse.controls.SingleComponentACL


    /**
     * Initialise accessibility listeners for this control.
     */
    private void initAccessible() {
        SingleComponentACL acl = new SingleComponentACL() {
            public void getValue(AccessibleControlEvent ae) {
                ae.result = (String)assetTypeCombo.getValue();
            }
        };
        acl.setControl(this);
        acl.setRole(ACC.ROLE_COMBOBOX);
        getAccessible().addAccessibleControlListener(acl);

        StandardAccessibleListener al = new StandardAccessibleListener(assetTypeCombo) {
            public void getName(AccessibleEvent event) {
                event.result = DROP_DOWN_TEXT;
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.controls.SingleComponentACL

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.