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

Examples of com.volantis.mcs.protocols.menu.shared.model.ConcreteMenuItem


        }
    }

    // javadoc inherited
    public void setHref(LinkAssetReference href) throws BuilderException {
        ConcreteMenuItem item = getCurrentMenuItem();

        if (item != null) {
            try {
                item.setHref(href);
            } catch (Exception e) {
                throw new BuilderException(e);
            }
        } else {
            reportBadParent("href");
View Full Code Here


        }
    }

    // javadoc inherited
    public void setSegment(String segment) throws BuilderException {
        ConcreteMenuItem item = getCurrentMenuItem();

        if (item != null) {
            try {
                item.setSegment(segment);
            } catch (Exception e) {
                throw new BuilderException(e);
            }
        } else {
            reportBadParent("segment");
View Full Code Here

        }
    }

    // javadoc inherited
    public void setTarget(String target) throws BuilderException {
        ConcreteMenuItem item = getCurrentMenuItem();

        if (item != null) {
            try {
                item.setTarget(target);
            } catch (Exception e) {
                throw new BuilderException(e);
            }
        } else {
            reportBadParent("target");
View Full Code Here

        }
    }

    // javadoc inherited
    public void setShortcut(TextAssetReference shortcut) throws BuilderException {
        ConcreteMenuItem item = getCurrentMenuItem();

        if (item != null) {
            try {
                item.setShortcut(shortcut);
            } catch (Exception e) {
                throw new BuilderException(e);
            }
        } else {
            reportBadParent("shortcut");
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.menu.shared.model.ConcreteMenuItem

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.