/// /// <summary> * (9) get attribute DBSchemaType </summary> /// * <returns> the value of the attribute </returns> /// public virtual EnumDBSchemaType getDBSchemaType() { return(EnumDBSchemaType.getEnum(getAttribute(AttributeName.DBSCHEMATYPE, null, null))); }
static JDFAutoDBSchema() { atrInfoTable[0] = new AtrInfoTable(AttributeName.DBSCHEMATYPE, 0x22222222, AttributeInfo.EnumAttributeType.enumeration, EnumDBSchemaType.getEnum(0), null); }
// ************************************************************************ // * Attribute getter / setter // * ************************************************************************ // // --------------------------------------------------------------------- // Methods for Attribute DBSchemaType // --------------------------------------------------------------------- /// /// <summary> * (5) set attribute DBSchemaType </summary> /// * <param name="enumVar">: the enumVar to set the attribute to </param> /// public virtual void setDBSchemaType(EnumDBSchemaType enumVar) { setAttribute(AttributeName.DBSCHEMATYPE, enumVar == null ? null : enumVar.getName(), null); }