/****************************************************************************** * 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_Message * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="AD_Message") public class X_AD_Message extends PO implements I_AD_Message, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_AD_Message (Properties ctx, int AD_Message_ID, String trxName) { super (ctx, AD_Message_ID, trxName); /** if (AD_Message_ID == 0) { setAD_Message_ID (0); setEntityType (null); // @SQL=SELECT CASE WHEN '@P|AdempiereSys:N@'='Y' THEN 'D' ELSE get_sysconfig('DEFAULT_ENTITYTYPE','U',0,0) END FROM Dual setMsgText (null); setMsgType (null); // I setValue (null); } */ } /** Standard Constructor */ public X_AD_Message (Properties ctx, int AD_Message_ID, String trxName, String ... virtualColumns) { super (ctx, AD_Message_ID, trxName, virtualColumns); /** if (AD_Message_ID == 0) { setAD_Message_ID (0); setEntityType (null); // @SQL=SELECT CASE WHEN '@P|AdempiereSys:N@'='Y' THEN 'D' ELSE get_sysconfig('DEFAULT_ENTITYTYPE','U',0,0) END FROM Dual setMsgText (null); setMsgType (null); // I setValue (null); } */ } /** Standard Constructor */ public X_AD_Message (Properties ctx, String AD_Message_UU, String trxName) { super (ctx, AD_Message_UU, trxName); /** if (AD_Message_UU == null) { setAD_Message_ID (0); setEntityType (null); // @SQL=SELECT CASE WHEN '@P|AdempiereSys:N@'='Y' THEN 'D' ELSE get_sysconfig('DEFAULT_ENTITYTYPE','U',0,0) END FROM Dual setMsgText (null); setMsgType (null); // I setValue (null); } */ } /** Standard Constructor */ public X_AD_Message (Properties ctx, String AD_Message_UU, String trxName, String ... virtualColumns) { super (ctx, AD_Message_UU, trxName, virtualColumns); /** if (AD_Message_UU == null) { setAD_Message_ID (0); setEntityType (null); // @SQL=SELECT CASE WHEN '@P|AdempiereSys:N@'='Y' THEN 'D' ELSE get_sysconfig('DEFAULT_ENTITYTYPE','U',0,0) END FROM Dual setMsgText (null); setMsgType (null); // I setValue (null); } */ } /** Load Constructor */ public X_AD_Message (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 4 - System */ 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_Message[") .append(get_ID()).append("]"); return sb.toString(); } /** Set Message. @param AD_Message_ID System Message */ public void setAD_Message_ID (int AD_Message_ID) { if (AD_Message_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_Message_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_Message_ID, Integer.valueOf(AD_Message_ID)); } /** Get Message. @return System Message */ public int getAD_Message_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Message_ID); if (ii == null) return 0; return ii.intValue(); } /** Set AD_Message_UU. @param AD_Message_UU AD_Message_UU */ public void setAD_Message_UU (String AD_Message_UU) { set_Value (COLUMNNAME_AD_Message_UU, AD_Message_UU); } /** Get AD_Message_UU. @return AD_Message_UU */ public String getAD_Message_UU() { return (String)get_Value(COLUMNNAME_AD_Message_UU); } /** EntityType AD_Reference_ID=389 */ public static final int ENTITYTYPE_AD_Reference_ID=389; /** Set Entity Type. @param EntityType Dictionary Entity Type; Determines ownership and synchronization */ public void setEntityType (String EntityType) { set_Value (COLUMNNAME_EntityType, EntityType); } /** Get Entity Type. @return Dictionary Entity Type; Determines ownership and synchronization */ public String getEntityType() { return (String)get_Value(COLUMNNAME_EntityType); } /** Set Message Text. @param MsgText Textual Informational, Menu or Error Message */ public void setMsgText (String MsgText) { set_Value (COLUMNNAME_MsgText, MsgText); } /** Get Message Text. @return Textual Informational, Menu or Error Message */ public String getMsgText() { return (String)get_Value(COLUMNNAME_MsgText); } /** Set Message Tip. @param MsgTip Additional tip or help for this message */ public void setMsgTip (String MsgTip) { set_Value (COLUMNNAME_MsgTip, MsgTip); } /** Get Message Tip. @return Additional tip or help for this message */ public String getMsgTip() { return (String)get_Value(COLUMNNAME_MsgTip); } /** MsgType AD_Reference_ID=103 */ public static final int MSGTYPE_AD_Reference_ID=103; /** Error = E */ public static final String MSGTYPE_Error = "E"; /** Information = I */ public static final String MSGTYPE_Information = "I"; /** Menu = M */ public static final String MSGTYPE_Menu = "M"; /** Set Message Type. @param MsgType Type of message (Informational, Menu or Error) */ public void setMsgType (String MsgType) { set_Value (COLUMNNAME_MsgType, MsgType); } /** Get Message Type. @return Type of message (Informational, Menu or Error) */ public String getMsgType() { return (String)get_Value(COLUMNNAME_MsgType); } /** 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); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getValue()); } }