/****************************************************************************** * 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.math.BigDecimal; import java.sql.ResultSet; import java.util.Properties; import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Retirement * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="A_Asset_Retirement") public class X_A_Asset_Retirement extends PO implements I_A_Asset_Retirement, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_A_Asset_Retirement (Properties ctx, int A_Asset_Retirement_ID, String trxName) { super (ctx, A_Asset_Retirement_ID, trxName); /** if (A_Asset_Retirement_ID == 0) { setA_Asset_ID (0); setA_Asset_Retirement_ID (0); setAssetMarketValueAmt (Env.ZERO); setAssetValueAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_A_Asset_Retirement (Properties ctx, int A_Asset_Retirement_ID, String trxName, String ... virtualColumns) { super (ctx, A_Asset_Retirement_ID, trxName, virtualColumns); /** if (A_Asset_Retirement_ID == 0) { setA_Asset_ID (0); setA_Asset_Retirement_ID (0); setAssetMarketValueAmt (Env.ZERO); setAssetValueAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_A_Asset_Retirement (Properties ctx, String A_Asset_Retirement_UU, String trxName) { super (ctx, A_Asset_Retirement_UU, trxName); /** if (A_Asset_Retirement_UU == null) { setA_Asset_ID (0); setA_Asset_Retirement_ID (0); setAssetMarketValueAmt (Env.ZERO); setAssetValueAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_A_Asset_Retirement (Properties ctx, String A_Asset_Retirement_UU, String trxName, String ... virtualColumns) { super (ctx, A_Asset_Retirement_UU, trxName, virtualColumns); /** if (A_Asset_Retirement_UU == null) { setA_Asset_ID (0); setA_Asset_Retirement_ID (0); setAssetMarketValueAmt (Env.ZERO); setAssetValueAmt (Env.ZERO); } */ } /** Load Constructor */ public X_A_Asset_Retirement (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_A_Asset_Retirement[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_ID) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @param A_Asset_ID Asset used internally or by customers */ public void setA_Asset_ID (int A_Asset_ID) { if (A_Asset_ID < 1) set_ValueNoCheck (COLUMNNAME_A_Asset_ID, null); else set_ValueNoCheck (COLUMNNAME_A_Asset_ID, Integer.valueOf(A_Asset_ID)); } /** Get Asset. @return Asset used internally or by customers */ public int getA_Asset_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_A_Asset_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Asset Retirement. @param A_Asset_Retirement_ID Internally used asset is not longer used. */ public void setA_Asset_Retirement_ID (int A_Asset_Retirement_ID) { if (A_Asset_Retirement_ID < 1) set_ValueNoCheck (COLUMNNAME_A_Asset_Retirement_ID, null); else set_ValueNoCheck (COLUMNNAME_A_Asset_Retirement_ID, Integer.valueOf(A_Asset_Retirement_ID)); } /** Get Asset Retirement. @return Internally used asset is not longer used. */ public int getA_Asset_Retirement_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_A_Asset_Retirement_ID); if (ii == null) return 0; return ii.intValue(); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getA_Asset_Retirement_ID())); } /** Set A_Asset_Retirement_UU. @param A_Asset_Retirement_UU A_Asset_Retirement_UU */ public void setA_Asset_Retirement_UU (String A_Asset_Retirement_UU) { set_Value (COLUMNNAME_A_Asset_Retirement_UU, A_Asset_Retirement_UU); } /** Get A_Asset_Retirement_UU. @return A_Asset_Retirement_UU */ public String getA_Asset_Retirement_UU() { return (String)get_Value(COLUMNNAME_A_Asset_Retirement_UU); } /** Set Market value Amount. @param AssetMarketValueAmt Market value of the asset */ public void setAssetMarketValueAmt (BigDecimal AssetMarketValueAmt) { set_Value (COLUMNNAME_AssetMarketValueAmt, AssetMarketValueAmt); } /** Get Market value Amount. @return Market value of the asset */ public BigDecimal getAssetMarketValueAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AssetMarketValueAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Asset value. @param AssetValueAmt Book Value of the asset */ public void setAssetValueAmt (BigDecimal AssetValueAmt) { set_Value (COLUMNNAME_AssetValueAmt, AssetValueAmt); } /** Get Asset value. @return Book Value of the asset */ public BigDecimal getAssetValueAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AssetValueAmt); if (bd == null) return Env.ZERO; return bd; } public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_ID) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @param C_InvoiceLine_ID Invoice Detail Line */ public void setC_InvoiceLine_ID (int C_InvoiceLine_ID) { if (C_InvoiceLine_ID < 1) set_Value (COLUMNNAME_C_InvoiceLine_ID, null); else set_Value (COLUMNNAME_C_InvoiceLine_ID, Integer.valueOf(C_InvoiceLine_ID)); } /** Get Invoice Line. @return Invoice Detail Line */ public int getC_InvoiceLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_InvoiceLine_ID); if (ii == null) return 0; return ii.intValue(); } }