Package org.dmd.mvw.tools.mvwgenerator.generated.types

Examples of org.dmd.mvw.tools.mvwgenerator.generated.types.MenuImplementationConfigREF


        super(ai);
    }

    @Override
    protected MenuImplementationConfigREF getNewHelper(){
        return(new MenuImplementationConfigREF());
    }
View Full Code Here


        return(false);
    }

    @Override
    protected MenuImplementationConfigREF typeCheck(Object value) throws DmcValueException {
        MenuImplementationConfigREF rc = null;

        if (value instanceof MenuImplementationConfigREF)
            rc = (MenuImplementationConfigREF)value;
        else if (value instanceof MenuImplementationConfigDMO)
            rc = new MenuImplementationConfigREF((MenuImplementationConfigDMO)value);
        else if (value instanceof CamelCaseName)
            rc = new MenuImplementationConfigREF((CamelCaseName)value);
        else if (value instanceof String)
            rc = new MenuImplementationConfigREF((String)value);
        else
            throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with MenuImplementationConfigREF, MenuImplementationConfigDMO or String expected."));

        return(rc);
    }
View Full Code Here

        value.serializeIt(dos);
    }

    @Override
    public MenuImplementationConfigREF deserializeValue(DmcInputStreamIF dis) throws Exception {
        MenuImplementationConfigREF rc = new MenuImplementationConfigREF();
        rc.deserializeIt(dis);
        return(rc);
    }
View Full Code Here

        return(rc);
    }

    @Override
    public MenuImplementationConfigREF cloneValue(MenuImplementationConfigREF value){
        return(new MenuImplementationConfigREF(value));
    }
View Full Code Here

    /**
     * @return A MenuImplementationConfig object.
     */
    // org.dmd.dmg.generators.BaseDMWGeneratorNewest.formatSV(BaseDMWGeneratorNewest.java:1252)
    public MenuImplementationConfig getMenuImplementation(){
        MenuImplementationConfigREF ref = ((WebApplicationDMO) core).getMenuImplementation();
        if (ref == null)
            return(null);
       
        if (ref.getObject() == null)
            return(null);
       
        return((MenuImplementationConfig)ref.getObject().getContainer());
    }
View Full Code Here

TOP

Related Classes of org.dmd.mvw.tools.mvwgenerator.generated.types.MenuImplementationConfigREF

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.