Examples of DmcTypeClassFilterSV


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

         rem(DmpDMSAG.__slice);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public ClassFilter getClassFilter(){
        DmcTypeClassFilterSV attr = (DmcTypeClassFilterSV) get(MetaDMSAG.__classFilter);
        if (attr == null)
            return(null);

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

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setClassFilter(ClassFilter value) {
        DmcAttribute<?> attr = get(MetaDMSAG.__classFilter);
        if (attr == null)
            attr = new DmcTypeClassFilterSV(MetaDMSAG.__classFilter);
       
        try{
            attr.set(value);
            set(MetaDMSAG.__classFilter,attr);
        }
View Full Code Here

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

     * Sets classFilter to the specified value.
     * @param value A value compatible with DmcTypeClassFilterSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setClassFilter(Object value) throws DmcValueException {
        DmcTypeClassFilterSV attr  = (DmcTypeClassFilterSV) get(MetaDMSAG.__classFilter);
        if (attr == null)
            attr = new DmcTypeClassFilterSV(MetaDMSAG.__classFilter);
       
        attr.set(value);
        set(MetaDMSAG.__classFilter,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.