/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program, if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ /** Generated Model - DO NOT CHANGE */ package org.compiere.model; import java.sql.ResultSet; import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Attribute * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="M_Attribute") public class X_M_Attribute extends PO implements I_M_Attribute, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_M_Attribute (Properties ctx, int M_Attribute_ID, String trxName) { super (ctx, M_Attribute_ID, trxName); /** if (M_Attribute_ID == 0) { setAttributeValueType (null); // S setIsInstanceAttribute (false); setIsMandatory (false); setM_Attribute_ID (0); setName (null); } */ } /** Standard Constructor */ public X_M_Attribute (Properties ctx, int M_Attribute_ID, String trxName, String ... virtualColumns) { super (ctx, M_Attribute_ID, trxName, virtualColumns); /** if (M_Attribute_ID == 0) { setAttributeValueType (null); // S setIsInstanceAttribute (false); setIsMandatory (false); setM_Attribute_ID (0); setName (null); } */ } /** Standard Constructor */ public X_M_Attribute (Properties ctx, String M_Attribute_UU, String trxName) { super (ctx, M_Attribute_UU, trxName); /** if (M_Attribute_UU == null) { setAttributeValueType (null); // S setIsInstanceAttribute (false); setIsMandatory (false); setM_Attribute_ID (0); setName (null); } */ } /** Standard Constructor */ public X_M_Attribute (Properties ctx, String M_Attribute_UU, String trxName, String ... virtualColumns) { super (ctx, M_Attribute_UU, trxName, virtualColumns); /** if (M_Attribute_UU == null) { setAttributeValueType (null); // S setIsInstanceAttribute (false); setIsMandatory (false); setM_Attribute_ID (0); setName (null); } */ } /** Load Constructor */ public X_M_Attribute (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 3 - Client - Org */ protected int get_AccessLevel() { return accessLevel.intValue(); } /** Load Meta Data */ protected POInfo initPO (Properties ctx) { POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); return poi; } public String toString() { StringBuilder sb = new StringBuilder ("X_M_Attribute[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_ID) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @param AD_Reference_ID System Reference and Validation */ public void setAD_Reference_ID (int AD_Reference_ID) { if (AD_Reference_ID < 1) set_Value (COLUMNNAME_AD_Reference_ID, null); else set_Value (COLUMNNAME_AD_Reference_ID, Integer.valueOf(AD_Reference_ID)); } /** Get Reference. @return System Reference and Validation */ public int getAD_Reference_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Reference_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_AD_Reference getAD_Reference_Value() throws RuntimeException { return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_ID) .getPO(getAD_Reference_Value_ID(), get_TrxName()); } /** Set Reference Key. @param AD_Reference_Value_ID Required to specify, if data type is Table or List */ public void setAD_Reference_Value_ID (int AD_Reference_Value_ID) { if (AD_Reference_Value_ID < 1) set_Value (COLUMNNAME_AD_Reference_Value_ID, null); else set_Value (COLUMNNAME_AD_Reference_Value_ID, Integer.valueOf(AD_Reference_Value_ID)); } /** Get Reference Key. @return Required to specify, if data type is Table or List */ public int getAD_Reference_Value_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Reference_Value_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException { return (org.compiere.model.I_AD_Val_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Val_Rule.Table_ID) .getPO(getAD_Val_Rule_ID(), get_TrxName()); } /** Set Dynamic Validation. @param AD_Val_Rule_ID Dynamic Validation Rule */ public void setAD_Val_Rule_ID (int AD_Val_Rule_ID) { if (AD_Val_Rule_ID < 1) set_Value (COLUMNNAME_AD_Val_Rule_ID, null); else set_Value (COLUMNNAME_AD_Val_Rule_ID, Integer.valueOf(AD_Val_Rule_ID)); } /** Get Dynamic Validation. @return Dynamic Validation Rule */ public int getAD_Val_Rule_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Val_Rule_ID); if (ii == null) return 0; return ii.intValue(); } /** AttributeValueType AD_Reference_ID=326 */ public static final int ATTRIBUTEVALUETYPE_AD_Reference_ID=326; /** Date = D */ public static final String ATTRIBUTEVALUETYPE_Date = "D"; /** List = L */ public static final String ATTRIBUTEVALUETYPE_List = "L"; /** Number = N */ public static final String ATTRIBUTEVALUETYPE_Number = "N"; /** Reference = R */ public static final String ATTRIBUTEVALUETYPE_Reference = "R"; /** String (max 40) = S */ public static final String ATTRIBUTEVALUETYPE_StringMax40 = "S"; /** Set Attribute Value Type. @param AttributeValueType Type of Attribute Value */ public void setAttributeValueType (String AttributeValueType) { set_Value (COLUMNNAME_AttributeValueType, AttributeValueType); } /** Get Attribute Value Type. @return Type of Attribute Value */ public String getAttributeValueType() { return (String)get_Value(COLUMNNAME_AttributeValueType); } /** Set Date Format. @param DateFormat Date format used in the input format */ public void setDateFormat (String DateFormat) { set_Value (COLUMNNAME_DateFormat, DateFormat); } /** Get Date Format. @return Date format used in the input format */ public String getDateFormat() { return (String)get_Value(COLUMNNAME_DateFormat); } /** Set Description. @param Description Optional short description of the record */ public void setDescription (String Description) { set_Value (COLUMNNAME_Description, Description); } /** Get Description. @return Optional short description of the record */ public String getDescription() { return (String)get_Value(COLUMNNAME_Description); } /** Set Instance Attribute. @param IsInstanceAttribute The product attribute is specific to the instance (like Serial No, Lot or Guarantee Date) */ public void setIsInstanceAttribute (boolean IsInstanceAttribute) { set_Value (COLUMNNAME_IsInstanceAttribute, Boolean.valueOf(IsInstanceAttribute)); } /** Get Instance Attribute. @return The product attribute is specific to the instance (like Serial No, Lot or Guarantee Date) */ public boolean isInstanceAttribute() { Object oo = get_Value(COLUMNNAME_IsInstanceAttribute); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Mandatory. @param IsMandatory Data entry is required in this column */ public void setIsMandatory (boolean IsMandatory) { set_Value (COLUMNNAME_IsMandatory, Boolean.valueOf(IsMandatory)); } /** Get Mandatory. @return Data entry is required in this column */ public boolean isMandatory() { Object oo = get_Value(COLUMNNAME_IsMandatory); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Attribute. @param M_Attribute_ID Product Attribute */ public void setM_Attribute_ID (int M_Attribute_ID) { if (M_Attribute_ID < 1) set_ValueNoCheck (COLUMNNAME_M_Attribute_ID, null); else set_ValueNoCheck (COLUMNNAME_M_Attribute_ID, Integer.valueOf(M_Attribute_ID)); } /** Get Attribute. @return Product Attribute */ public int getM_Attribute_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Attribute_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_AttributeSearch getM_AttributeSearch() throws RuntimeException { return (org.compiere.model.I_M_AttributeSearch)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSearch.Table_ID) .getPO(getM_AttributeSearch_ID(), get_TrxName()); } /** Set Attribute Search. @param M_AttributeSearch_ID Common Search Attribute */ public void setM_AttributeSearch_ID (int M_AttributeSearch_ID) { if (M_AttributeSearch_ID < 1) set_Value (COLUMNNAME_M_AttributeSearch_ID, null); else set_Value (COLUMNNAME_M_AttributeSearch_ID, Integer.valueOf(M_AttributeSearch_ID)); } /** Get Attribute Search. @return Common Search Attribute */ public int getM_AttributeSearch_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_AttributeSearch_ID); if (ii == null) return 0; return ii.intValue(); } /** Set M_Attribute_UU. @param M_Attribute_UU M_Attribute_UU */ public void setM_Attribute_UU (String M_Attribute_UU) { set_Value (COLUMNNAME_M_Attribute_UU, M_Attribute_UU); } /** Get M_Attribute_UU. @return M_Attribute_UU */ public String getM_Attribute_UU() { return (String)get_Value(COLUMNNAME_M_Attribute_UU); } /** Set Name. @param Name Alphanumeric identifier of the entity */ public void setName (String Name) { set_Value (COLUMNNAME_Name, Name); } /** Get Name. @return Alphanumeric identifier of the entity */ public String getName() { return (String)get_Value(COLUMNNAME_Name); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getName()); } }