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

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


        super(ai);
    }

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


        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

        value.serializeIt(dos);
    }

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

        return(rc);
    }

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

TOP

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

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.