Package org.dmd.dmp.shared.generated.types

Examples of org.dmd.dmp.shared.generated.types.DmcTypeResponseCategoryEnumSV


         rem(DmpDMSAG.__responseText);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public ResponseCategoryEnum getResponseCategory(){
        DmcTypeResponseCategoryEnumSV attr = (DmcTypeResponseCategoryEnumSV) get(DmpDMSAG.__responseCategory);
        if (attr == null)
            return(null);

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


     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setResponseCategory(ResponseCategoryEnum value) {
        DmcAttribute<?> attr = get(DmpDMSAG.__responseCategory);
        if (attr == null)
            attr = new DmcTypeResponseCategoryEnumSV(DmpDMSAG.__responseCategory);
       
        try{
            attr.set(value);
            set(DmpDMSAG.__responseCategory,attr);
        }
View Full Code Here

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

TOP

Related Classes of org.dmd.dmp.shared.generated.types.DmcTypeResponseCategoryEnumSV

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.