Package org.dmd.dms.generated.types

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


         rem(MetaDMSAG.__valueType);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public BaseTypeEnum getBaseType(){
        DmcTypeBaseTypeEnumSV attr = (DmcTypeBaseTypeEnumSV) get(MetaDMSAG.__baseType);
        if (attr == null)
            return(BaseTypeEnum.PRIMITIVE);

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


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

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

TOP

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

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.