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

Source Code of org.dmd.mvw.tools.mvwgenerator.generated.dmo.SubPlaceDMO

//  ---------------------------------------------------------------------------
//  dark-matter-data
//  Copyright (c) 2011 dark-matter-data committers
//  ---------------------------------------------------------------------------
//  This program is free software; you can redistribute it and/or modify it
//  under the terms of the GNU Lesser General Public License as published by the
//  Free Software Foundation; either version 3 of the License, or (at your
//  option) any later version.
//  This program is distributed in the hope that it will be useful, but WITHOUT
//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
//  more details.
//  You should have received a copy of the GNU Lesser General Public License along
//  with this program; if not, see <http://www.gnu.org/licenses/lgpl.html>.
//  ---------------------------------------------------------------------------
package org.dmd.mvw.tools.mvwgenerator.generated.dmo;

// Generated from: org.dmd.dms.util.GenUtility.formatImports(GenUtility.java:391)
import java.io.Serializable;                                                     // Always required - (GenUtility.java:220)
import org.dmd.dmc.DmcAttribute;                                                 // Any attributes - (GenUtility.java:236)
import org.dmd.dmc.DmcNamedObjectIF;                                             // Named object - (GenUtility.java:371)
import org.dmd.dmc.DmcOmni;                                                      // Lazy resolution - (GenUtility.java:316)
import org.dmd.dmc.DmcSliceInfo;                                                 // Required for object slicing - (GenUtility.java:225)
import org.dmd.dmc.DmcValueException;                                            // Any attributes - (GenUtility.java:237)
import org.dmd.dmc.types.CamelCaseName;                                          // Naming attribute type - (GenUtility.java:366)
import org.dmd.dms.generated.dmo.MetaDMSAG;                                      // Required for MODREC constructor - (GenUtility.java:224)
import org.dmd.dms.generated.types.DmcTypeCamelCaseNameSV;                       // Required type - (GenUtility.java:324)
import org.dmd.dms.generated.types.DmcTypeModifierMV;                            // Required for MODREC constructor - (GenUtility.java:223)
import org.dmd.dms.generated.types.DmcTypeStringSV;                              // Required type - (GenUtility.java:324)
import org.dmd.mvw.tools.mvwgenerator.generated.dmo.PlaceDMO;                    // Base class - (GenUtility.java:351)
import org.dmd.mvw.tools.mvwgenerator.generated.types.DmcTypePlaceREFSV;         // Reference type - (GenUtility.java:296)
import org.dmd.mvw.tools.mvwgenerator.generated.types.PlaceREF;                  // Helper class - (GenUtility.java:331)

/**
* null
* <P>
* Generated from the mvw schema at version 0.1
* <P>
* This code was auto-generated by the dmogenerator utility and shouldn't be alterred manually!
* Generated from: org.dmd.dms.util.DmoFormatter.dumpDMO(DmoFormatter.java:133)
*/
@SuppressWarnings("serial")
public class SubPlaceDMO  extends PlaceDMO  implements DmcNamedObjectIF, Serializable  {

    public final static String constructionClassName = "SubPlace";


    static {
    }

    public SubPlaceDMO() {
        super("SubPlace");
    }

    protected SubPlaceDMO(String oc) {
        super(oc);
    }

    @Override
    public SubPlaceDMO getNew(){
        SubPlaceDMO rc = new SubPlaceDMO();
        return(rc);
    }

    @Override
    public SubPlaceDMO getSlice(DmcSliceInfo info){
        SubPlaceDMO rc = new SubPlaceDMO();
        populateSlice(rc,info);
        return(rc);
    }

    public SubPlaceDMO(DmcTypeModifierMV mods) {
        super("SubPlace");
        modrec(true);
        setModifier(mods);
    }

    public SubPlaceDMO getModificationRecorder(){
        SubPlaceDMO rc = new SubPlaceDMO();
        rc.setPlaceName(getPlaceName());
        rc.setModifier(new DmcTypeModifierMV(MetaDMSAG.__modify));
        rc.modrec(true);
        return(rc);
    }

    // org.dmd.dms.util.DmoFormatter.getAccessFunctions(DmoFormatter.java:744)
    public CamelCaseName getObjectName(){
        DmcAttribute<?> name = get(MvwDMSAG.__placeName);
        if (name != null)
            return((CamelCaseName)name.getSV());
   
        return(null);
    }

    // org.dmd.dms.util.DmoFormatter.getAccessFunctions(DmoFormatter.java:761)
    public DmcAttribute<?> getObjectNameAttribute(){
        DmcAttribute<?> name = get(MvwDMSAG.__placeName);
        return(name);
    }

    // org.dmd.dms.util.DmoFormatter.getAccessFunctions(DmoFormatter.java:768)
    public boolean equals(Object obj){
        if (obj instanceof SubPlaceDMO){
            return( getObjectName().equals( ((SubPlaceDMO) obj).getObjectName()) );
        }
        return(false);
    }

    // org.dmd.dms.util.DmoFormatter.getAccessFunctions(DmoFormatter.java:776)
    public int hashCode(){
        CamelCaseName objn = getObjectName();
        if (objn == null)
            return(0);
       
        return(objn.hashCode());
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public CamelCaseName getPlaceName(){
        DmcTypeCamelCaseNameSV attr = (DmcTypeCamelCaseNameSV) get(MvwDMSAG.__placeName);
        if (attr == null)
            return(null);

        return(attr.getSV());
    }

    /**
     * Sets placeName to the specified value.
     * @param value CamelCaseName
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setPlaceName(CamelCaseName value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__placeName);
        if (attr == null)
            attr = new DmcTypeCamelCaseNameSV(MvwDMSAG.__placeName);
       
        try{
            attr.set(value);
            set(MvwDMSAG.__placeName,attr);
        }
        catch(DmcValueException ex){
            throw(new IllegalStateException("The type specific set() method shouldn't throw exceptions!",ex));
        }
    }

    /**
     * Sets placeName to the specified value.
     * @param value A value compatible with DmcTypeCamelCaseNameSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setPlaceName(Object value) throws DmcValueException {
        DmcTypeCamelCaseNameSV attr  = (DmcTypeCamelCaseNameSV) get(MvwDMSAG.__placeName);
        if (attr == null)
            attr = new DmcTypeCamelCaseNameSV(MvwDMSAG.__placeName);
       
        attr.set(value);
        set(MvwDMSAG.__placeName,attr);
    }

    /**
     * Removes the placeName attribute value.
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:887)
    public void remPlaceName(){
         rem(MvwDMSAG.__placeName);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public String getPlacePrefix(){
        DmcTypeStringSV attr = (DmcTypeStringSV) get(MvwDMSAG.__placePrefix);
        if (attr == null)
            return(null);

        return(attr.getSV());
    }

    /**
     * Sets placePrefix to the specified value.
     * @param value String
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setPlacePrefix(String value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__placePrefix);
        if (attr == null)
            attr = new DmcTypeStringSV(MvwDMSAG.__placePrefix);
       
        try{
            attr.set(value);
            set(MvwDMSAG.__placePrefix,attr);
        }
        catch(DmcValueException ex){
            throw(new IllegalStateException("The type specific set() method shouldn't throw exceptions!",ex));
        }
    }

    /**
     * Sets placePrefix to the specified value.
     * @param value A value compatible with DmcTypeStringSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setPlacePrefix(Object value) throws DmcValueException {
        DmcTypeStringSV attr  = (DmcTypeStringSV) get(MvwDMSAG.__placePrefix);
        if (attr == null)
            attr = new DmcTypeStringSV(MvwDMSAG.__placePrefix);
       
        attr.set(value);
        set(MvwDMSAG.__placePrefix,attr);
    }

    /**
     * Removes the placePrefix attribute value.
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:887)
    public void remPlacePrefix(){
         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());
    }

    /**
     * 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());
    }

    /**
     * Sets parentPlace to the specified value.
     * @param value PlaceDMO
     */
    // 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);
            set(MvwDMSAG.__parentPlace,attr);
        }
        catch(DmcValueException ex){
            throw(new IllegalStateException("The type specific set() method shouldn't throw exceptions!",ex));
        }
    }

    /**
     * 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);
    }

    /**
     * Removes the parentPlace attribute value.
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:887)
    public void remParentPlace(){
         rem(MvwDMSAG.__parentPlace);
    }




}
TOP

Related Classes of org.dmd.mvw.tools.mvwgenerator.generated.dmo.SubPlaceDMO

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.