/****************************************************************************** * 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 C_Element * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_Element") public class X_C_Element extends PO implements I_C_Element, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_Element (Properties ctx, int C_Element_ID, String trxName) { super (ctx, C_Element_ID, trxName); /** if (C_Element_ID == 0) { setAD_Tree_ID (0); setC_Element_ID (0); setElementType (null); // A setIsBalancing (false); setIsNaturalAccount (false); setName (null); } */ } /** Standard Constructor */ public X_C_Element (Properties ctx, int C_Element_ID, String trxName, String ... virtualColumns) { super (ctx, C_Element_ID, trxName, virtualColumns); /** if (C_Element_ID == 0) { setAD_Tree_ID (0); setC_Element_ID (0); setElementType (null); // A setIsBalancing (false); setIsNaturalAccount (false); setName (null); } */ } /** Standard Constructor */ public X_C_Element (Properties ctx, String C_Element_UU, String trxName) { super (ctx, C_Element_UU, trxName); /** if (C_Element_UU == null) { setAD_Tree_ID (0); setC_Element_ID (0); setElementType (null); // A setIsBalancing (false); setIsNaturalAccount (false); setName (null); } */ } /** Standard Constructor */ public X_C_Element (Properties ctx, String C_Element_UU, String trxName, String ... virtualColumns) { super (ctx, C_Element_UU, trxName, virtualColumns); /** if (C_Element_UU == null) { setAD_Tree_ID (0); setC_Element_ID (0); setElementType (null); // A setIsBalancing (false); setIsNaturalAccount (false); setName (null); } */ } /** Load Constructor */ public X_C_Element (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 2 - Client */ 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_C_Element[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_ID) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @param AD_Tree_ID Identifies a Tree */ public void setAD_Tree_ID (int AD_Tree_ID) { if (AD_Tree_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_Tree_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_Tree_ID, Integer.valueOf(AD_Tree_ID)); } /** Get Tree. @return Identifies a Tree */ public int getAD_Tree_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Tree_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Element. @param C_Element_ID Accounting Element */ public void setC_Element_ID (int C_Element_ID) { if (C_Element_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Element_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Element_ID, Integer.valueOf(C_Element_ID)); } /** Get Element. @return Accounting Element */ public int getC_Element_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Element_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_Element_UU. @param C_Element_UU C_Element_UU */ public void setC_Element_UU (String C_Element_UU) { set_Value (COLUMNNAME_C_Element_UU, C_Element_UU); } /** Get C_Element_UU. @return C_Element_UU */ public String getC_Element_UU() { return (String)get_Value(COLUMNNAME_C_Element_UU); } /** 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); } /** ElementType AD_Reference_ID=116 */ public static final int ELEMENTTYPE_AD_Reference_ID=116; /** Account = A */ public static final String ELEMENTTYPE_Account = "A"; /** User defined = U */ public static final String ELEMENTTYPE_UserDefined = "U"; /** Set Type. @param ElementType Element Type (account or user defined) */ public void setElementType (String ElementType) { set_ValueNoCheck (COLUMNNAME_ElementType, ElementType); } /** Get Type. @return Element Type (account or user defined) */ public String getElementType() { return (String)get_Value(COLUMNNAME_ElementType); } /** Set Balancing. @param IsBalancing All transactions within an element value must balance (e.g. cost centers) */ public void setIsBalancing (boolean IsBalancing) { set_Value (COLUMNNAME_IsBalancing, Boolean.valueOf(IsBalancing)); } /** Get Balancing. @return All transactions within an element value must balance (e.g. cost centers) */ public boolean isBalancing() { Object oo = get_Value(COLUMNNAME_IsBalancing); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Natural Account. @param IsNaturalAccount The primary natural account */ public void setIsNaturalAccount (boolean IsNaturalAccount) { set_Value (COLUMNNAME_IsNaturalAccount, Boolean.valueOf(IsNaturalAccount)); } /** Get Natural Account. @return The primary natural account */ public boolean isNaturalAccount() { Object oo = get_Value(COLUMNNAME_IsNaturalAccount); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** 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()); } /** Set Value Format. @param VFormat Format of the value; Can contain fixed format elements, Variables: "_lLoOaAcCa09" */ public void setVFormat (String VFormat) { set_Value (COLUMNNAME_VFormat, VFormat); } /** Get Value Format. @return Format of the value; Can contain fixed format elements, Variables: "_lLoOaAcCa09" */ public String getVFormat() { return (String)get_Value(COLUMNNAME_VFormat); } }