Package org.dmd.mvw.tools.mvwgenerator.generated.types

Examples of org.dmd.mvw.tools.mvwgenerator.generated.types.DmcTypePlaceREFSV


         rem(MvwDMSAG.__placePrefix);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:645)
    public PlaceREF getParentPlace(){
        DmcTypePlaceREFSV attr = (DmcTypePlaceREFSV) get(MvwDMSAG.__parentPlace);
        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 Place without attempting lazy resolution (if turned on).
     */
    public PlaceREF getParentPlaceREF(){
        DmcTypePlaceREFSV attr = (DmcTypePlaceREFSV) get(MvwDMSAG.__parentPlace);
        if (attr == null)
            return(null);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:699)
    public void setParentPlace(PlaceDMO value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__parentPlace);
        if (attr == null)
            attr = new DmcTypePlaceREFSV(MvwDMSAG.__parentPlace);
        else
            ((DmcTypePlaceREFSV)attr).removeBackReferences();
       
        try{
            attr.set(value);
View Full Code Here

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

         rem(MvwDMSAG.__appName);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:645)
    public PlaceREF getDefaultPlace(){
        DmcTypePlaceREFSV attr = (DmcTypePlaceREFSV) get(MvwDMSAG.__defaultPlace);
        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 Place without attempting lazy resolution (if turned on).
     */
    public PlaceREF getDefaultPlaceREF(){
        DmcTypePlaceREFSV attr = (DmcTypePlaceREFSV) get(MvwDMSAG.__defaultPlace);
        if (attr == null)
            return(null);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:699)
    public void setDefaultPlace(PlaceDMO value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__defaultPlace);
        if (attr == null)
            attr = new DmcTypePlaceREFSV(MvwDMSAG.__defaultPlace);
        else
            ((DmcTypePlaceREFSV)attr).removeBackReferences();
       
        try{
            attr.set(value);
View Full Code Here

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

TOP

Related Classes of org.dmd.mvw.tools.mvwgenerator.generated.types.DmcTypePlaceREFSV

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.