/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2007 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 ar.com.ergio.model; import java.sql.ResultSet; import java.util.Properties; import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for LAR_Tarjeta_Credito * @author Adempiere (generated) * @version 361.Final (6410:0234094) | LAR 2.0.0 | Yacopino 2.0.0 - $Id$ */ public class X_LAR_Tarjeta_Credito extends PO implements I_LAR_Tarjeta_Credito, I_Persistent { /** * */ private static final long serialVersionUID = 20150626L; /** Standard Constructor */ public X_LAR_Tarjeta_Credito (Properties ctx, int LAR_Tarjeta_Credito_ID, String trxName) { super (ctx, LAR_Tarjeta_Credito_ID, trxName); /** if (LAR_Tarjeta_Credito_ID == 0) { setLAR_Tarjeta_Credito_ID (0); setName (null); setValue (null); } */ } /** Load Constructor */ public X_LAR_Tarjeta_Credito (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() { StringBuffer sb = new StringBuffer ("X_LAR_Tarjeta_Credito[") .append(get_ID()).append("]"); return sb.toString(); } /** 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 Tarjeta de Crédito. @param LAR_Tarjeta_Credito_ID Tarjeta de Crédito */ public void setLAR_Tarjeta_Credito_ID (int LAR_Tarjeta_Credito_ID) { if (LAR_Tarjeta_Credito_ID < 1) set_ValueNoCheck (COLUMNNAME_LAR_Tarjeta_Credito_ID, null); else set_ValueNoCheck (COLUMNNAME_LAR_Tarjeta_Credito_ID, Integer.valueOf(LAR_Tarjeta_Credito_ID)); } /** Get Tarjeta de Crédito. @return Tarjeta de Crédito */ public int getLAR_Tarjeta_Credito_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_LAR_Tarjeta_Credito_ID); if (ii == null) return 0; return ii.intValue(); } /** 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 Search Key. @param Value Search key for the record in the format required - must be unique */ public void setValue (String Value) { set_Value (COLUMNNAME_Value, Value); } /** Get Search Key. @return Search key for the record in the format required - must be unique */ public String getValue () { return (String)get_Value(COLUMNNAME_Value); } }