Package org.dmd.dms.generated.types

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


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


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

        return(rc);
    }

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

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

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

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

         rem(DmgDMSAG.__configSuffix);
    }

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

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

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

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

         rem(MetaDMSAG.__description);
    }

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

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

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

TOP

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

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.