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

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


     * one, or null otherwise.
     *
     * @return the current entity or null if not of the required class
     */
    private MutableTitled getCurrentTitled() {
        MutableTitled current = null;

        if (currentEntity instanceof MutableTitled) {
            current = (MutableTitled) currentEntity;
        }

View Full Code Here


        }
    }

    // javadoc inherited
    public void setTitle(String title) throws BuilderException {
        MutableTitled item = getCurrentTitled();

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

TOP

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

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.