/****************************************************************************** * 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 AD_WF_ActivityResult * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="AD_WF_ActivityResult") public class X_AD_WF_ActivityResult extends PO implements I_AD_WF_ActivityResult, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_AD_WF_ActivityResult (Properties ctx, int AD_WF_ActivityResult_ID, String trxName) { super (ctx, AD_WF_ActivityResult_ID, trxName); /** if (AD_WF_ActivityResult_ID == 0) { setAD_WF_ActivityResult_ID (0); setAD_WF_Activity_ID (0); setAttributeName (null); } */ } /** Standard Constructor */ public X_AD_WF_ActivityResult (Properties ctx, int AD_WF_ActivityResult_ID, String trxName, String ... virtualColumns) { super (ctx, AD_WF_ActivityResult_ID, trxName, virtualColumns); /** if (AD_WF_ActivityResult_ID == 0) { setAD_WF_ActivityResult_ID (0); setAD_WF_Activity_ID (0); setAttributeName (null); } */ } /** Standard Constructor */ public X_AD_WF_ActivityResult (Properties ctx, String AD_WF_ActivityResult_UU, String trxName) { super (ctx, AD_WF_ActivityResult_UU, trxName); /** if (AD_WF_ActivityResult_UU == null) { setAD_WF_ActivityResult_ID (0); setAD_WF_Activity_ID (0); setAttributeName (null); } */ } /** Standard Constructor */ public X_AD_WF_ActivityResult (Properties ctx, String AD_WF_ActivityResult_UU, String trxName, String ... virtualColumns) { super (ctx, AD_WF_ActivityResult_UU, trxName, virtualColumns); /** if (AD_WF_ActivityResult_UU == null) { setAD_WF_ActivityResult_ID (0); setAD_WF_Activity_ID (0); setAttributeName (null); } */ } /** Load Constructor */ public X_AD_WF_ActivityResult (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 7 - System - 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_AD_WF_ActivityResult[") .append(get_ID()).append("]"); return sb.toString(); } /** Set Workflow Activity Result. @param AD_WF_ActivityResult_ID Result of the Workflow Process Activity */ public void setAD_WF_ActivityResult_ID (int AD_WF_ActivityResult_ID) { if (AD_WF_ActivityResult_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_WF_ActivityResult_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_WF_ActivityResult_ID, Integer.valueOf(AD_WF_ActivityResult_ID)); } /** Get Workflow Activity Result. @return Result of the Workflow Process Activity */ public int getAD_WF_ActivityResult_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_WF_ActivityResult_ID); if (ii == null) return 0; return ii.intValue(); } /** Set AD_WF_ActivityResult_UU. @param AD_WF_ActivityResult_UU AD_WF_ActivityResult_UU */ public void setAD_WF_ActivityResult_UU (String AD_WF_ActivityResult_UU) { set_Value (COLUMNNAME_AD_WF_ActivityResult_UU, AD_WF_ActivityResult_UU); } /** Get AD_WF_ActivityResult_UU. @return AD_WF_ActivityResult_UU */ public String getAD_WF_ActivityResult_UU() { return (String)get_Value(COLUMNNAME_AD_WF_ActivityResult_UU); } public org.compiere.model.I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException { return (org.compiere.model.I_AD_WF_Activity)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Activity.Table_ID) .getPO(getAD_WF_Activity_ID(), get_TrxName()); } /** Set Workflow Activity. @param AD_WF_Activity_ID Workflow Activity */ public void setAD_WF_Activity_ID (int AD_WF_Activity_ID) { if (AD_WF_Activity_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_WF_Activity_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_WF_Activity_ID, Integer.valueOf(AD_WF_Activity_ID)); } /** Get Workflow Activity. @return Workflow Activity */ public int getAD_WF_Activity_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_WF_Activity_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(getAD_WF_Activity_ID())); } /** Set Attribute Name. @param AttributeName Name of the Attribute */ public void setAttributeName (String AttributeName) { set_Value (COLUMNNAME_AttributeName, AttributeName); } /** Get Attribute Name. @return Name of the Attribute */ public String getAttributeName() { return (String)get_Value(COLUMNNAME_AttributeName); } /** Set Attribute Value. @param AttributeValue Value of the Attribute */ public void setAttributeValue (String AttributeValue) { set_Value (COLUMNNAME_AttributeValue, AttributeValue); } /** Get Attribute Value. @return Value of the Attribute */ public String getAttributeValue() { return (String)get_Value(COLUMNNAME_AttributeValue); } /** 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 Comment/Help. @param Help Comment or Hint */ public void setHelp (String Help) { set_Value (COLUMNNAME_Help, Help); } /** Get Comment/Help. @return Comment or Hint */ public String getHelp() { return (String)get_Value(COLUMNNAME_Help); } }