Examples of DmcTypeDoubleSV


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

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

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

     * Sets nrrMaximum to the specified value.
     * @param value A value compatible with DmcTypeDoubleSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setNrrMaximum(Object value) throws DmcValueException {
        DmcTypeDoubleSV attr  = (DmcTypeDoubleSV) get(DmvDMSAG.__nrrMaximum);
        if (attr == null)
            attr = new DmcTypeDoubleSV(DmvDMSAG.__nrrMaximum);
       
        attr.set(value);
        set(DmvDMSAG.__nrrMaximum,attr);
    }
View Full Code Here
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.