Examples of DmcTypeStringMV


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

     * @return An Iterator of String objects.
     */
    @SuppressWarnings("unchecked")
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1102)
    public Iterator<String> getMvString(){
        DmcTypeStringMV attr = (DmcTypeStringMV) get(DmtDMSAG.__mvString);
        if (attr == null)
            return( ((List<String>) Collections.EMPTY_LIST).iterator());

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

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

    /**
     * @return The nth String value.
     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1114)
    public String getNthMvString(int i){
        DmcTypeStringMV attr = (DmcTypeStringMV) get(DmtDMSAG.__mvString);
        if (attr == null)
            return(null);

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

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

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

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

     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1235)
    public DmcAttribute<?> addMvString(Object value) throws DmcValueException {
        DmcAttribute<?> attr = get(DmtDMSAG.__mvString);
        if (attr == null)
            attr = new DmcTypeStringMV(DmtDMSAG.__mvString);
       
        setLastValue(attr.add(value));
        add(DmtDMSAG.__mvString,attr);
        return(attr);
    }
View Full Code Here

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

    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1310)
    public DmcAttribute<?> delMvString(Object value) throws DmcValueException {
        DmcAttribute<?> attr = get(DmtDMSAG.__mvString);
       
        if ( (attr == null) && (getModifier()!= null))
            delFromEmptyAttribute(new DmcTypeStringMV(DmtDMSAG.__mvString), value);
        else
            attr = del(DmtDMSAG.__mvString, value);
       
        return(attr);
    }
View Full Code Here

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

    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1326)
    public DmcAttribute<?> delMvString(String value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__mvString);
       
        if ( (attr == null) && (getModifier()!= null))
            delFromEmptyAttribute(new DmcTypeStringMV(DmtDMSAG.__mvString), value);
        else
            attr = del(DmtDMSAG.__mvString, value);
       
        return(attr);
    }
View Full Code Here

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

     * @return An Iterator of String objects.
     */
    @SuppressWarnings("unchecked")
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1102)
    public Iterator<String> getExtendsInterface(){
        DmcTypeStringMV attr = (DmcTypeStringMV) get(MetaDMSAG.__extendsInterface);
        if (attr == null)
            return( ((List<String>) Collections.EMPTY_LIST).iterator());

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

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

    /**
     * @return The nth String value.
     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1114)
    public String getNthExtendsInterface(int i){
        DmcTypeStringMV attr = (DmcTypeStringMV) get(MetaDMSAG.__extendsInterface);
        if (attr == null)
            return(null);

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

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

     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1128)
    public DmcAttribute<?> addExtendsInterface(String value) {
        DmcAttribute<?> attr = get(MetaDMSAG.__extendsInterface);
        if (attr == null)
            attr = new DmcTypeStringMV(MetaDMSAG.__extendsInterface);
       
        try{
            setLastValue(attr.add(value));
            add(MetaDMSAG.__extendsInterface,attr);
        }
View Full Code Here

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

     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1235)
    public DmcAttribute<?> addExtendsInterface(Object value) throws DmcValueException {
        DmcAttribute<?> attr = get(MetaDMSAG.__extendsInterface);
        if (attr == null)
            attr = new DmcTypeStringMV(MetaDMSAG.__extendsInterface);
       
        setLastValue(attr.add(value));
        add(MetaDMSAG.__extendsInterface,attr);
        return(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.