Examples of DmcTypeStringSV


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

         rem(MetaDMSAG.__lineNumber);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public String getFile(){
        DmcTypeStringSV attr = (DmcTypeStringSV) get(MetaDMSAG.__file);
        if (attr == null)
            return(null);

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

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

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

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

     * Sets file to the specified value.
     * @param value A value compatible with DmcTypeStringSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setFile(Object value) throws DmcValueException {
        DmcTypeStringSV attr  = (DmcTypeStringSV) get(MetaDMSAG.__file);
        if (attr == null)
            attr = new DmcTypeStringSV(MetaDMSAG.__file);
       
        attr.set(value);
        set(MetaDMSAG.__file,attr);
    }
View Full Code Here

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

         rem(DmpServerDMSAG.__pluginName);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public String getPluginClass(){
        DmcTypeStringSV attr = (DmcTypeStringSV) get(DmpServerDMSAG.__pluginClass);
        if (attr == null)
            return(null);

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

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setPluginClass(String value) {
        DmcAttribute<?> attr = get(DmpServerDMSAG.__pluginClass);
        if (attr == null)
            attr = new DmcTypeStringSV(DmpServerDMSAG.__pluginClass);
       
        try{
            attr.set(value);
            set(DmpServerDMSAG.__pluginClass,attr);
        }
View Full Code Here

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

     * Sets pluginClass to the specified value.
     * @param value A value compatible with DmcTypeStringSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setPluginClass(Object value) throws DmcValueException {
        DmcTypeStringSV attr  = (DmcTypeStringSV) get(DmpServerDMSAG.__pluginClass);
        if (attr == null)
            attr = new DmcTypeStringSV(DmpServerDMSAG.__pluginClass);
       
        attr.set(value);
        set(DmpServerDMSAG.__pluginClass,attr);
    }
View Full Code Here

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

         rem(DmtDMSAG.__tsLong);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public String getSvString(){
        DmcTypeStringSV attr = (DmcTypeStringSV) get(DmtDMSAG.__svString);
        if (attr == null)
            return(null);

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

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

     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:814)
    public void setSvString(String value) {
        DmcAttribute<?> attr = get(DmtDMSAG.__svString);
        if (attr == null)
            attr = new DmcTypeStringSV(DmtDMSAG.__svString);
       
        try{
            attr.set(value);
            set(DmtDMSAG.__svString,attr);
        }
View Full Code Here

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

     * Sets svString to the specified value.
     * @param value A value compatible with DmcTypeStringSV
     */
    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
    public void setSvString(Object value) throws DmcValueException {
        DmcTypeStringSV attr  = (DmcTypeStringSV) get(DmtDMSAG.__svString);
        if (attr == null)
            attr = new DmcTypeStringSV(DmtDMSAG.__svString);
       
        attr.set(value);
        set(DmtDMSAG.__svString,attr);
    }
View Full Code Here

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

         rem(MetaDMSAG.__dotName);
    }

    // org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:774)
    public String getSessionIDRI(){
        DmcTypeStringSV attr = (DmcTypeStringSV) get(DmpServerDMSAG.__sessionIDRI);
        if (attr == null)
            return(null);

        return(attr.getSV());
    }
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.