Package org.dmd.dms.generated.types

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


        return(objn.hashCode());
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public Boolean isCodeSplit(){
        DmcTypeBooleanSV attr = (DmcTypeBooleanSV) get(MvwDMSAG.__codeSplit);
        if (attr == null)
            return(false);

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


     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setCodeSplit(Boolean value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__codeSplit);
        if (attr == null)
            attr = new DmcTypeBooleanSV(MvwDMSAG.__codeSplit);
       
        try{
            attr.set(value);
            set(MvwDMSAG.__codeSplit,attr);
        }
View Full Code Here

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

         rem(MvwDMSAG.__codeSplit);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public Boolean isSingleton(){
        DmcTypeBooleanSV attr = (DmcTypeBooleanSV) get(MvwDMSAG.__singleton);
        if (attr == null)
            return(false);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setSingleton(Boolean value) {
        DmcAttribute<?> attr = get(MvwDMSAG.__singleton);
        if (attr == null)
            attr = new DmcTypeBooleanSV(MvwDMSAG.__singleton);
       
        try{
            attr.set(value);
            set(MvwDMSAG.__singleton,attr);
        }
View Full Code Here

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

         rem(MetaDMSAG.__description);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public Boolean isAndOnlyOne(){
        DmcTypeBooleanSV attr = (DmcTypeBooleanSV) get(DmvDMSAG.__andOnlyOne);
        if (attr == null)
            return(false);

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setAndOnlyOne(Boolean value) {
        DmcAttribute<?> attr = get(DmvDMSAG.__andOnlyOne);
        if (attr == null)
            attr = new DmcTypeBooleanSV(DmvDMSAG.__andOnlyOne);
       
        try{
            attr.set(value);
            set(DmvDMSAG.__andOnlyOne,attr);
        }
View Full Code Here

     * Sets andOnlyOne to the specified value.
     * @param value A value compatible with DmcTypeBooleanSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setAndOnlyOne(Object value) throws DmcValueException {
        DmcTypeBooleanSV attr  = (DmcTypeBooleanSV) get(DmvDMSAG.__andOnlyOne);
        if (attr == null)
            attr = new DmcTypeBooleanSV(DmvDMSAG.__andOnlyOne);
       
        attr.set(value);
        set(DmvDMSAG.__andOnlyOne,attr);
    }
View Full Code Here

         rem(MvwDMSAG.__importThis);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public Boolean isCreateOnDemand(){
        DmcTypeBooleanSV attr = (DmcTypeBooleanSV) get(MvwDMSAG.__createOnDemand);
        if (attr == null)
            return(false);

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

TOP

Related Classes of org.dmd.dms.generated.types.DmcTypeBooleanSV

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.