/****************************************************************************** * 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.sql.Timestamp; import java.util.Properties; import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_SLA_Measure * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="PA_SLA_Measure") public class X_PA_SLA_Measure extends PO implements I_PA_SLA_Measure, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_PA_SLA_Measure (Properties ctx, int PA_SLA_Measure_ID, String trxName) { super (ctx, PA_SLA_Measure_ID, trxName); /** if (PA_SLA_Measure_ID == 0) { setDateTrx (new Timestamp( System.currentTimeMillis() )); setMeasureActual (Env.ZERO); setPA_SLA_Goal_ID (0); setPA_SLA_Measure_ID (0); setProcessed (false); } */ } /** Standard Constructor */ public X_PA_SLA_Measure (Properties ctx, int PA_SLA_Measure_ID, String trxName, String ... virtualColumns) { super (ctx, PA_SLA_Measure_ID, trxName, virtualColumns); /** if (PA_SLA_Measure_ID == 0) { setDateTrx (new Timestamp( System.currentTimeMillis() )); setMeasureActual (Env.ZERO); setPA_SLA_Goal_ID (0); setPA_SLA_Measure_ID (0); setProcessed (false); } */ } /** Standard Constructor */ public X_PA_SLA_Measure (Properties ctx, String PA_SLA_Measure_UU, String trxName) { super (ctx, PA_SLA_Measure_UU, trxName); /** if (PA_SLA_Measure_UU == null) { setDateTrx (new Timestamp( System.currentTimeMillis() )); setMeasureActual (Env.ZERO); setPA_SLA_Goal_ID (0); setPA_SLA_Measure_ID (0); setProcessed (false); } */ } /** Standard Constructor */ public X_PA_SLA_Measure (Properties ctx, String PA_SLA_Measure_UU, String trxName, String ... virtualColumns) { super (ctx, PA_SLA_Measure_UU, trxName, virtualColumns); /** if (PA_SLA_Measure_UU == null) { setDateTrx (new Timestamp( System.currentTimeMillis() )); setMeasureActual (Env.ZERO); setPA_SLA_Goal_ID (0); setPA_SLA_Measure_ID (0); setProcessed (false); } */ } /** Load Constructor */ public X_PA_SLA_Measure (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_PA_SLA_Measure[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_ID) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @param AD_Table_ID Database Table information */ public void setAD_Table_ID (int AD_Table_ID) { if (AD_Table_ID < 1) set_Value (COLUMNNAME_AD_Table_ID, null); else set_Value (COLUMNNAME_AD_Table_ID, Integer.valueOf(AD_Table_ID)); } /** Get Table. @return Database Table information */ public int getAD_Table_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Table_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Transaction Date. @param DateTrx Transaction Date */ public void setDateTrx (Timestamp DateTrx) { set_Value (COLUMNNAME_DateTrx, DateTrx); } /** Get Transaction Date. @return Transaction Date */ public Timestamp getDateTrx() { return (Timestamp)get_Value(COLUMNNAME_DateTrx); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getDateTrx())); } /** 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 Measure Actual. @param MeasureActual Actual value that has been measured. */ public void setMeasureActual (BigDecimal MeasureActual) { set_Value (COLUMNNAME_MeasureActual, MeasureActual); } /** Get Measure Actual. @return Actual value that has been measured. */ public BigDecimal getMeasureActual() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_MeasureActual); if (bd == null) return Env.ZERO; return bd; } public org.compiere.model.I_PA_SLA_Goal getPA_SLA_Goal() throws RuntimeException { return (org.compiere.model.I_PA_SLA_Goal)MTable.get(getCtx(), org.compiere.model.I_PA_SLA_Goal.Table_ID) .getPO(getPA_SLA_Goal_ID(), get_TrxName()); } /** Set SLA Goal. @param PA_SLA_Goal_ID Service Level Agreement Goal */ public void setPA_SLA_Goal_ID (int PA_SLA_Goal_ID) { if (PA_SLA_Goal_ID < 1) set_ValueNoCheck (COLUMNNAME_PA_SLA_Goal_ID, null); else set_ValueNoCheck (COLUMNNAME_PA_SLA_Goal_ID, Integer.valueOf(PA_SLA_Goal_ID)); } /** Get SLA Goal. @return Service Level Agreement Goal */ public int getPA_SLA_Goal_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_PA_SLA_Goal_ID); if (ii == null) return 0; return ii.intValue(); } /** Set SLA Measure. @param PA_SLA_Measure_ID Service Level Agreement Measure */ public void setPA_SLA_Measure_ID (int PA_SLA_Measure_ID) { if (PA_SLA_Measure_ID < 1) set_ValueNoCheck (COLUMNNAME_PA_SLA_Measure_ID, null); else set_ValueNoCheck (COLUMNNAME_PA_SLA_Measure_ID, Integer.valueOf(PA_SLA_Measure_ID)); } /** Get SLA Measure. @return Service Level Agreement Measure */ public int getPA_SLA_Measure_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_PA_SLA_Measure_ID); if (ii == null) return 0; return ii.intValue(); } /** Set PA_SLA_Measure_UU. @param PA_SLA_Measure_UU PA_SLA_Measure_UU */ public void setPA_SLA_Measure_UU (String PA_SLA_Measure_UU) { set_Value (COLUMNNAME_PA_SLA_Measure_UU, PA_SLA_Measure_UU); } /** Get PA_SLA_Measure_UU. @return PA_SLA_Measure_UU */ public String getPA_SLA_Measure_UU() { return (String)get_Value(COLUMNNAME_PA_SLA_Measure_UU); } /** Set Processed. @param Processed The document has been processed */ public void setProcessed (boolean Processed) { set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); } /** Get Processed. @return The document has been processed */ public boolean isProcessed() { Object oo = get_Value(COLUMNNAME_Processed); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) { set_Value (COLUMNNAME_Processing, Boolean.valueOf(Processing)); } /** Get Process Now. @return Process Now */ public boolean isProcessing() { Object oo = get_Value(COLUMNNAME_Processing); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Record ID. @param Record_ID Direct internal record ID */ public void setRecord_ID (int Record_ID) { if (Record_ID < 0) set_Value (COLUMNNAME_Record_ID, null); else set_Value (COLUMNNAME_Record_ID, Integer.valueOf(Record_ID)); } /** Get Record ID. @return Direct internal record ID */ public int getRecord_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Record_ID); if (ii == null) return 0; return ii.intValue(); } }