Package org.dmd.dms.generated.types

Examples of org.dmd.dms.generated.types.DmcTypeClassTypeEnumSV


         rem(DmgDMSAG.__genContext);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public ClassTypeEnum getClassType(){
        DmcTypeClassTypeEnumSV attr = (DmcTypeClassTypeEnumSV) get(MetaDMSAG.__classType);
        if (attr == null)
            return(ClassTypeEnum.UNKNOWN);

        return(attr.getSV());
    }
View Full Code Here


     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setClassType(ClassTypeEnum value) {
        DmcAttribute<?> attr = get(MetaDMSAG.__classType);
        if (attr == null)
            attr = new DmcTypeClassTypeEnumSV(MetaDMSAG.__classType);
       
        try{
            attr.set(value);
            set(MetaDMSAG.__classType,attr);
        }
View Full Code Here

     * Sets classType to the specified value.
     * @param value A value compatible with DmcTypeClassTypeEnumSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setClassType(Object value) throws DmcValueException {
        DmcTypeClassTypeEnumSV attr  = (DmcTypeClassTypeEnumSV) get(MetaDMSAG.__classType);
        if (attr == null)
            attr = new DmcTypeClassTypeEnumSV(MetaDMSAG.__classType);
       
        attr.set(value);
        set(MetaDMSAG.__classType,attr);
    }
View Full Code Here

TOP

Related Classes of org.dmd.dms.generated.types.DmcTypeClassTypeEnumSV

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.