Package org.dmd.dms.generated.types

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


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

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


    /**
     * @return The nth NameContainer value.
     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1114)
    public NameContainer getNthHsNames(int i){
        DmcTypeNameContainerSET attr = (DmcTypeNameContainerSET) get(DmtDMSAG.__hsNames);
        if (attr == null)
            return(null);

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

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

     */
    // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1182)
    public DmcAttribute<?> addHsNames(DmcObjectName value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__hsNames);
        if (attr == null)
            attr = new DmcTypeNameContainerSET(DmtDMSAG.__hsNames);
       
        try{
            setLastValue(attr.add(value));
            add(DmtDMSAG.__hsNames,attr);
        }
View Full Code Here

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

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

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

TOP

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

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.