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

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


         rem(DmtDMSAG.__anotherSVString);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:645)
    public ObjWithRefsREF getObjRef(){
        DmcTypeObjWithRefsREFSV attr = (DmcTypeObjWithRefsREFSV) get(DmtDMSAG.__objRef);
        if (attr == null)
            return(null);

        if (DmcOmni.instance().lazyResolution()){
            if (attr.doLazyResolution(this)){
                rem(attr.getAttributeInfo());
                return(null);
            }
        }

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


    /**
     * Returns the reference to ObjWithRefs without attempting lazy resolution (if turned on).
     */
    public ObjWithRefsREF getObjRefREF(){
        DmcTypeObjWithRefsREFSV attr = (DmcTypeObjWithRefsREFSV) get(DmtDMSAG.__objRef);
        if (attr == null)
            return(null);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:699)
    public void setObjRef(ObjWithRefsDMO value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__objRef);
        if (attr == null)
            attr = new DmcTypeObjWithRefsREFSV(DmtDMSAG.__objRef);
        else
            ((DmcTypeObjWithRefsREFSV)attr).removeBackReferences();
       
        try{
            attr.set(value);
View Full Code Here

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

        return(rc);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:645)
    public ObjWithRefsREF getSvNamedObj(){
        DmcTypeObjWithRefsREFSV attr = (DmcTypeObjWithRefsREFSV) get(DmtDMSAG.__svNamedObj);
        if (attr == null)
            return(null);

        if (DmcOmni.instance().lazyResolution()){
            if (attr.doLazyResolution(this)){
                rem(attr.getAttributeInfo());
                return(null);
            }
        }

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

    /**
     * Returns the reference to ObjWithRefs without attempting lazy resolution (if turned on).
     */
    public ObjWithRefsREF getSvNamedObjREF(){
        DmcTypeObjWithRefsREFSV attr = (DmcTypeObjWithRefsREFSV) get(DmtDMSAG.__svNamedObj);
        if (attr == null)
            return(null);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:699)
    public void setSvNamedObj(ObjWithRefsDMO value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__svNamedObj);
        if (attr == null)
            attr = new DmcTypeObjWithRefsREFSV(DmtDMSAG.__svNamedObj);
        else
            ((DmcTypeObjWithRefsREFSV)attr).removeBackReferences();
       
        try{
            attr.set(value);
View Full Code Here

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

TOP

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

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.