Package com.volantis.mcs.protocols.widgets

Examples of com.volantis.mcs.protocols.widgets.ActionName


     *
     * @param widgetId
     */
    private void initializeActionsToInternalButtonsMap(String widgetId) {
        for (int i = 0; i < INTERNAL_ACTIONS.length; i++) {
            ActionName action = INTERNAL_ACTIONS[i];
            List actionList = new ArrayList();
            actionList.add(action);
            ButtonAttributes buttonAttributes = new ButtonAttributes();
            buttonAttributes.setActionReference(new ActionReferenceImpl(widgetId, actionList));
            actionsToInternalButtonsMap.put(action, buttonAttributes);
View Full Code Here


     * @param pseudoElement button type (expressed as style pseudo-element).
     * @return rendered button element.
     */
    private Element renderButton(PseudoElement pseudoElement) throws ProtocolException {
        // get button attributes for given pseudo elements
        ActionName actionName = (ActionName)pseudoElementsActions.get(pseudoElement);
       
        // buttonAttributes contains only action reference for given button
        // action is  used for creating fresh button attributes with
        // unique id.
        // buttonAttributes can contains also more data than action reference
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.widgets.ActionName

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.