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

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


         rem(DmpDMSAG.__myOwnEvent);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public DMPEventTypeEnum getEventTypeDMP(){
        DmcTypeDMPEventTypeEnumSV attr = (DmcTypeDMPEventTypeEnumSV) get(DmpDMSAG.__eventTypeDMP);
        if (attr == null)
            return(null);

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


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

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

TOP

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

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.