/****************************************************************************** * 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.eevolution.model; import java.sql.ResultSet; import java.util.Properties; import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Job * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="HR_Job") public class X_HR_Job extends PO implements I_HR_Job, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_HR_Job (Properties ctx, int HR_Job_ID, String trxName) { super (ctx, HR_Job_ID, trxName); /** if (HR_Job_ID == 0) { setHR_Job_ID (0); setName (null); } */ } /** Standard Constructor */ public X_HR_Job (Properties ctx, int HR_Job_ID, String trxName, String ... virtualColumns) { super (ctx, HR_Job_ID, trxName, virtualColumns); /** if (HR_Job_ID == 0) { setHR_Job_ID (0); setName (null); } */ } /** Standard Constructor */ public X_HR_Job (Properties ctx, String HR_Job_UU, String trxName) { super (ctx, HR_Job_UU, trxName); /** if (HR_Job_UU == null) { setHR_Job_ID (0); setName (null); } */ } /** Standard Constructor */ public X_HR_Job (Properties ctx, String HR_Job_UU, String trxName, String ... virtualColumns) { super (ctx, HR_Job_UU, trxName, virtualColumns); /** if (HR_Job_UU == null) { setHR_Job_ID (0); setName (null); } */ } /** Load Constructor */ public X_HR_Job (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_HR_Job[") .append(get_ID()).append(",Name=").append(getName()).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); } public org.eevolution.model.I_HR_Department getHR_Department() throws RuntimeException { return (org.eevolution.model.I_HR_Department)MTable.get(getCtx(), org.eevolution.model.I_HR_Department.Table_ID) .getPO(getHR_Department_ID(), get_TrxName()); } /** Set Payroll Department. @param HR_Department_ID Payroll Department */ public void setHR_Department_ID (int HR_Department_ID) { if (HR_Department_ID < 1) set_Value (COLUMNNAME_HR_Department_ID, null); else set_Value (COLUMNNAME_HR_Department_ID, Integer.valueOf(HR_Department_ID)); } /** Get Payroll Department. @return Payroll Department */ public int getHR_Department_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_HR_Department_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Payroll Job. @param HR_Job_ID Payroll Job */ public void setHR_Job_ID (int HR_Job_ID) { if (HR_Job_ID < 1) set_ValueNoCheck (COLUMNNAME_HR_Job_ID, null); else set_ValueNoCheck (COLUMNNAME_HR_Job_ID, Integer.valueOf(HR_Job_ID)); } /** Get Payroll Job. @return Payroll Job */ public int getHR_Job_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_HR_Job_ID); if (ii == null) return 0; return ii.intValue(); } /** Set HR_Job_UU. @param HR_Job_UU HR_Job_UU */ public void setHR_Job_UU (String HR_Job_UU) { set_Value (COLUMNNAME_HR_Job_UU, HR_Job_UU); } /** Get HR_Job_UU. @return HR_Job_UU */ public String getHR_Job_UU() { return (String)get_Value(COLUMNNAME_HR_Job_UU); } /** Set Parent link column. @param IsParent This column is a link to the parent table (e.g. header from lines) - incl. Association key columns */ public void setIsParent (boolean IsParent) { set_Value (COLUMNNAME_IsParent, Boolean.valueOf(IsParent)); } /** Get Parent link column. @return This column is a link to the parent table (e.g. header from lines) - incl. Association key columns */ public boolean isParent() { Object oo = get_Value(COLUMNNAME_IsParent); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Job Qty. @param JobCant Job Qty */ public void setJobCant (int JobCant) { set_Value (COLUMNNAME_JobCant, Integer.valueOf(JobCant)); } /** Get Job Qty. @return Job Qty */ public int getJobCant() { Integer ii = (Integer)get_Value(COLUMNNAME_JobCant); 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()); } public org.eevolution.model.I_HR_Job getNext_Job() throws RuntimeException { return (org.eevolution.model.I_HR_Job)MTable.get(getCtx(), org.eevolution.model.I_HR_Job.Table_ID) .getPO(getNext_Job_ID(), get_TrxName()); } /** Set Next Job. @param Next_Job_ID Next Job */ public void setNext_Job_ID (int Next_Job_ID) { if (Next_Job_ID < 1) set_Value (COLUMNNAME_Next_Job_ID, null); else set_Value (COLUMNNAME_Next_Job_ID, Integer.valueOf(Next_Job_ID)); } /** Get Next Job. @return Next Job */ public int getNext_Job_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Next_Job_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException { return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_ID) .getPO(getSupervisor_ID(), get_TrxName()); } /** Set Supervisor. @param Supervisor_ID Supervisor for this user/organization - used for escalation and approval */ public void setSupervisor_ID (int Supervisor_ID) { if (Supervisor_ID < 1) set_Value (COLUMNNAME_Supervisor_ID, null); else set_Value (COLUMNNAME_Supervisor_ID, Integer.valueOf(Supervisor_ID)); } /** Get Supervisor. @return Supervisor for this user/organization - used for escalation and approval */ public int getSupervisor_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Supervisor_ID); if (ii == null) return 0; return ii.intValue(); } /** 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); } }