Examples of DmcTypeNameContainerSV


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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:840)
    public void setAnObjName(DmcObjectName value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__anObjName);
        if (attr == null)
            attr = new DmcTypeNameContainerSV(DmtDMSAG.__anObjName);
       
        try{
            attr.set(value);
            set(DmtDMSAG.__anObjName,attr);
        }
View Full Code Here

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

     * Sets anObjName to the specified value.
     * @param value A value compatible with DmcTypeNameContainerSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setAnObjName(Object value) throws DmcValueException {
        DmcTypeNameContainerSV attr  = (DmcTypeNameContainerSV) get(DmtDMSAG.__anObjName);
        if (attr == null)
            attr = new DmcTypeNameContainerSV(DmtDMSAG.__anObjName);
       
        attr.set(value);
        set(DmtDMSAG.__anObjName,attr);
    }
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.