Examples of DmcTypeIntegerNameSV


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

         rem(DmtDMSAG.__svString);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public IntegerName getIntegerName(){
        DmcTypeIntegerNameSV attr = (DmcTypeIntegerNameSV) get(MetaDMSAG.__integerName);
        if (attr == null)
            return(null);

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

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

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

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

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

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

         myName = (DmcTypeIntegerNameSV)o.getObjectNameAttribute();
    }

    public IntegerNamedObjectREF(IntegerName n) throws DmcValueException {
         object = null;
         myName = new DmcTypeIntegerNameSV(__integerName);
         myName.set(n);
    }
View Full Code Here

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

         myName.set(n);
    }

    public IntegerNamedObjectREF(String n) throws DmcValueException {
         object = null;
         myName = new DmcTypeIntegerNameSV(__integerName);
         myName.set(n);
    }
View Full Code Here

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

    }

    @Override
    public void setName(DmcObjectName n) throws DmcValueException {
        if (myName == null)
            myName = new DmcTypeIntegerNameSV(__integerName);
        myName.set(n);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.