Package org.dmd.dms.generated.types

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


    /**
     * @return The nth Long value.
     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1114)
    public Long getNthHsLong(int i){
        DmcTypeLongSET attr = (DmcTypeLongSET) get(DmtDMSAG.__hsLong);
        if (attr == null)
            return(null);

        return(attr.getMVnth(i));
    }
View Full Code Here


     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1128)
    public DmcAttribute<?> addHsLong(Long value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__hsLong);
        if (attr == null)
            attr = new DmcTypeLongSET(DmtDMSAG.__hsLong);
       
        try{
            setLastValue(attr.add(value));
            add(DmtDMSAG.__hsLong,attr);
        }
View Full Code Here

TOP

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

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.