Package org.dmd.dmt.shared.generated.types

Examples of org.dmd.dmt.shared.generated.types.DmcTypeSomeRelationSV


     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setSomeRelationSV(SomeRelation value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__someRelationSV);
        if (attr == null)
            attr = new DmcTypeSomeRelationSV(DmtDMSAG.__someRelationSV);
       
        try{
            attr.set(value);
            set(DmtDMSAG.__someRelationSV,attr);
        }
View Full Code Here


     * Sets someRelationSV to the specified value.
     * @param value A value compatible with DmcTypeSomeRelationSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setSomeRelationSV(Object value) throws DmcValueException {
        DmcTypeSomeRelationSV attr  = (DmcTypeSomeRelationSV) get(DmtDMSAG.__someRelationSV);
        if (attr == null)
            attr = new DmcTypeSomeRelationSV(DmtDMSAG.__someRelationSV);
        else
            attr.removeBackReferences();
       
        attr.set(value);
        set(DmtDMSAG.__someRelationSV,attr);
    }
View Full Code Here

TOP

Related Classes of org.dmd.dmt.shared.generated.types.DmcTypeSomeRelationSV

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.