Package com.volantis.mcs.protocols.menu.model

Examples of com.volantis.mcs.protocols.menu.model.Menu


            if (buffer != null && buffer instanceof DOMOutputBuffer) {
                DOMOutputBuffer domBuffer = (DOMOutputBuffer) buffer;

                // get the shortcut properties from the menu.
                Menu menu = item.getMenu();
                TextAssetReference shortcutValue = item.getShortcut();
                if (menu != null && shortcutValue != null &&
                        customisation.supportsAccessKeyAttribute()) {

                    String shortcutTextValue =
                            shortcutValue.getText(TextEncoding.PLAIN);

                    if (shortcutTextValue != null) {
                        // this is never null.
                        ShortcutProperties shortcutProps =
                                menu.getShortcutProperties();

                        ElementDetails elementDetails = menu.getElementDetails();

                        if (elementDetails != null) {

                            SpanAttributes attributes = new SpanAttributes();
                            // Should only render out a surrounding span
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.menu.model.Menu

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.