Examples of DmcTypeUUIDNameSV


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

         rem(DmtDMSAG.__mvDouble);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public UUIDName getUuidName(){
        DmcTypeUUIDNameSV attr = (DmcTypeUUIDNameSV) get(MetaDMSAG.__uuidName);
        if (attr == null)
            return(null);

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

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

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

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

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

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

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

    public UUIDNamedObjectREF(UUIDName n) throws DmcValueException {
         object = null;
         myName = new DmcTypeUUIDNameSV(__uuidName);
         myName.set(n);
    }
View Full Code Here

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

         myName.set(n);
    }

    public UUIDNamedObjectREF(String n) throws DmcValueException {
         object = null;
         myName = new DmcTypeUUIDNameSV(__uuidName);
         myName.set(n);
    }
View Full Code Here

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

    }

    @Override
    public void setName(DmcObjectName n) throws DmcValueException {
        if (myName == null)
            myName = new DmcTypeUUIDNameSV(__uuidName);
        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.