X_AD_Field.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
org.compiere.model |
![]() |
![]() |
Compiere |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/******************************************************************************
* Product: Compiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 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., 3600 Bridge Parkway #102, Redwood City, CA 94065, USA *
* or via info@compiere.org or http://www.compiere.org/license.html *
*****************************************************************************/
package org.compiere.model;
/** Generated Model - DO NOT CHANGE */
import java.sql.*;
import java.math.*;
import org.compiere.framework.*;
import org.compiere.util.*;
/** Generated Model for AD_Field
* @author Jorg Janke (generated)
* @version Release 3.1.0 - $Id$ */
public class X_AD_Field extends PO
{
/** Standard Constructor
@param ctx context
@param AD_Field_ID id
@param trxName transaction
*/
public X_AD_Field (Ctx ctx, int AD_Field_ID, String trxName)
{
super (ctx, AD_Field_ID, trxName);
/** if (AD_Field_ID == 0)
{
setAD_Field_ID (0);
setAD_Tab_ID (0);
setEntityType (null); // U
setIsCentrallyMaintained (true); // Y
setIsDisplayed (true); // Y
setIsEncrypted (false);
setIsFieldOnly (false);
setIsHeading (false);
setIsReadOnly (false);
setIsSameLine (false);
setName (null);
}
*/
}
/** Load Constructor
@param ctx context
@param rs result set
@param trxName transaction
*/
public X_AD_Field (Ctx ctx, ResultSet rs, String trxName)
{
super (ctx, rs, trxName);
}
/** Serial Version No */
static final long serialVersionUID = 27498265709789L;
/** Last Updated Timestamp 2008-07-15 09:46:33.0 */
public static final long updatedMS = 1216140393000L;
/** AD_Table_ID=107 */
public static final int Table_ID=107;
/** TableName=AD_Field */
public static final String Table_Name="AD_Field";
protected static KeyNamePair Model = new KeyNamePair(Table_ID,"AD_Field");
protected BigDecimal accessLevel = new BigDecimal(4);
/** AccessLevel
@return 4 - System
*/
protected int get_AccessLevel()
{
return accessLevel.intValue();
}
/** Load Meta Data
@param ctx context
@return PO Info
*/
protected POInfo initPO (Ctx ctx)
{
POInfo poi = POInfo.getPOInfo (ctx, Table_ID);
return poi;
}
/** Info
@return info
*/
public String toString()
{
StringBuffer sb = new StringBuffer ("X_AD_Field[").append(get_ID()).append("]");
return sb.toString();
}
/** Set Column.
@param AD_Column_ID Column in the table */
public void setAD_Column_ID (int AD_Column_ID)
{
if (AD_Column_ID <= 0) set_Value ("AD_Column_ID", null);
else
set_Value ("AD_Column_ID", new Integer(AD_Column_ID));
}
/** Get Column.
@return Column in the table */
public int getAD_Column_ID()
{
Integer ii = (Integer)get_Value("AD_Column_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Field Group.
@param AD_FieldGroup_ID Logical grouping of fields */
public void setAD_FieldGroup_ID (int AD_FieldGroup_ID)
{
if (AD_FieldGroup_ID <= 0) set_Value ("AD_FieldGroup_ID", null);
else
set_Value ("AD_FieldGroup_ID", new Integer(AD_FieldGroup_ID));
}
/** Get Field Group.
@return Logical grouping of fields */
public int getAD_FieldGroup_ID()
{
Integer ii = (Integer)get_Value("AD_FieldGroup_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Field.
@param AD_Field_ID Field on a tab in a window */
public void setAD_Field_ID (int AD_Field_ID)
{
if (AD_Field_ID < 1) throw new IllegalArgumentException ("AD_Field_ID is mandatory.");
set_ValueNoCheck ("AD_Field_ID", new Integer(AD_Field_ID));
}
/** Get Field.
@return Field on a tab in a window */
public int getAD_Field_ID()
{
Integer ii = (Integer)get_Value("AD_Field_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** AD_Reference_ID AD_Reference_ID=1 */
public static final int AD_REFERENCE_ID_AD_Reference_ID=1;
/** Set Reference.
@param AD_Reference_ID System Reference and Validation */
public void setAD_Reference_ID (int AD_Reference_ID)
{
if (AD_Reference_ID <= 0) set_Value ("AD_Reference_ID", null);
else
set_Value ("AD_Reference_ID", new Integer(AD_Reference_ID));
}
/** Get Reference.
@return System Reference and Validation */
public int getAD_Reference_ID()
{
Integer ii = (Integer)get_Value("AD_Reference_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Tab.
@param AD_Tab_ID Tab within a Window */
public void setAD_Tab_ID (int AD_Tab_ID)
{
if (AD_Tab_ID < 1) throw new IllegalArgumentException ("AD_Tab_ID is mandatory.");
set_ValueNoCheck ("AD_Tab_ID", new Integer(AD_Tab_ID));
}
/** Get Tab.
@return Tab within a Window */
public int getAD_Tab_ID()
{
Integer ii = (Integer)get_Value("AD_Tab_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Default Logic.
@param DefaultValue Default value hierarchy, separated by;
*/
public void setDefaultValue (String DefaultValue)
{
int length = p_info.getFieldLength("DefaultValue");
if (DefaultValue != null && DefaultValue.length() > length)
{
log.warning("Length > " + length + " - truncated");
DefaultValue = DefaultValue.substring(0,length);
}
set_Value ("DefaultValue", DefaultValue);
}
/** Get Default Logic.
@return Default value hierarchy, separated by;
*/
public String getDefaultValue()
{
return (String)get_Value("DefaultValue");
}
/** Set Description.
@param Description Optional short description of the record */
public void setDescription (String Description)
{
int length = p_info.getFieldLength("Description");
if (Description != null && Description.length() > length)
{
log.warning("Length > " + length + " - truncated");
Description = Description.substring(0,length);
}
set_Value ("Description", Description);
}
/** Get Description.
@return Optional short description of the record */
public String getDescription()
{
return (String)get_Value("Description");
}
/** Set Display Length.
@param DisplayLength Length of the display in characters */
public void setDisplayLength (int DisplayLength)
{
set_Value ("DisplayLength", new Integer(DisplayLength));
}
/** Get Display Length.
@return Length of the display in characters */
public int getDisplayLength()
{
Integer ii = (Integer)get_Value("DisplayLength");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Display Logic.
@param DisplayLogic If the Field is displayed, the result determines if the field is actually displayed */
public void setDisplayLogic (String DisplayLogic)
{
int length = p_info.getFieldLength("DisplayLogic");
if (DisplayLogic != null && DisplayLogic.length() > length)
{
log.warning("Length > " + length + " - truncated");
DisplayLogic = DisplayLogic.substring(0,length);
}
set_Value ("DisplayLogic", DisplayLogic);
}
/** Get Display Logic.
@return If the Field is displayed, the result determines if the field is actually displayed */
public String getDisplayLogic()
{
return (String)get_Value("DisplayLogic");
}
/** 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)
{
int length = p_info.getFieldLength("EntityType");
if (EntityType.length() > length)
{
log.warning("Length > " + length + " - truncated");
EntityType = EntityType.substring(0,length);
}
set_Value ("EntityType", EntityType);
}
/** Get Entity Type.
@return Dictionary Entity Type;
Determines ownership and synchronization */
public String getEntityType()
{
return (String)get_Value("EntityType");
}
/** Set Comment.
@param Help Comment, Help or Hint */
public void setHelp (String Help)
{
int length = p_info.getFieldLength("Help");
if (Help != null && Help.length() > length)
{
log.warning("Length > " + length + " - truncated");
Help = Help.substring(0,length);
}
set_Value ("Help", Help);
}
/** Get Comment.
@return Comment, Help or Hint */
public String getHelp()
{
return (String)get_Value("Help");
}
/** Set Centrally maintained.
@param IsCentrallyMaintained Information maintained in System Element table */
public void setIsCentrallyMaintained (boolean IsCentrallyMaintained)
{
set_Value ("IsCentrallyMaintained", new Boolean(IsCentrallyMaintained));
}
/** Get Centrally maintained.
@return Information maintained in System Element table */
public boolean isCentrallyMaintained()
{
Object oo = get_Value("IsCentrallyMaintained");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Default Focus.
@param IsDefaultFocus Field received the default focus */
public void setIsDefaultFocus (boolean IsDefaultFocus)
{
set_Value ("IsDefaultFocus", new Boolean(IsDefaultFocus));
}
/** Get Default Focus.
@return Field received the default focus */
public boolean isDefaultFocus()
{
Object oo = get_Value("IsDefaultFocus");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Displayed.
@param IsDisplayed Determines, if this field is displayed */
public void setIsDisplayed (boolean IsDisplayed)
{
set_Value ("IsDisplayed", new Boolean(IsDisplayed));
}
/** Get Displayed.
@return Determines, if this field is displayed */
public boolean isDisplayed()
{
Object oo = get_Value("IsDisplayed");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Encrypted.
@param IsEncrypted Display or Storage is encrypted */
public void setIsEncrypted (boolean IsEncrypted)
{
set_Value ("IsEncrypted", new Boolean(IsEncrypted));
}
/** Get Encrypted.
@return Display or Storage is encrypted */
public boolean isEncrypted()
{
Object oo = get_Value("IsEncrypted");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Field Only.
@param IsFieldOnly Label is not displayed */
public void setIsFieldOnly (boolean IsFieldOnly)
{
set_Value ("IsFieldOnly", new Boolean(IsFieldOnly));
}
/** Get Field Only.
@return Label is not displayed */
public boolean isFieldOnly()
{
Object oo = get_Value("IsFieldOnly");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Heading only.
@param IsHeading Field without Column - Only label is displayed */
public void setIsHeading (boolean IsHeading)
{
set_Value ("IsHeading", new Boolean(IsHeading));
}
/** Get Heading only.
@return Field without Column - Only label is displayed */
public boolean isHeading()
{
Object oo = get_Value("IsHeading");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** IsMandatoryUI AD_Reference_ID=319 */
public static final int ISMANDATORYUI_AD_Reference_ID=319;
/** No = N */
public static final String ISMANDATORYUI_No = "N";
/** Yes = Y */
public static final String ISMANDATORYUI_Yes = "Y";
/** Is test a valid value.
@param test testvalue
@return true if valid **/
public boolean isIsMandatoryUIValid (String test)
{
return test == null || test.equals("N") || test.equals("Y");
}
/** Set Mandatory UI.
@param IsMandatoryUI Data entry is required for data entry in the field */
public void setIsMandatoryUI (String IsMandatoryUI)
{
if (!isIsMandatoryUIValid(IsMandatoryUI))
throw new IllegalArgumentException ("IsMandatoryUI Invalid value - " + IsMandatoryUI + " - Reference_ID=319 - N - Y");
int length = p_info.getFieldLength("IsMandatoryUI");
if (IsMandatoryUI != null && IsMandatoryUI.length() > length)
{
log.warning("Length > " + length + " - truncated");
IsMandatoryUI = IsMandatoryUI.substring(0,length);
}
set_Value ("IsMandatoryUI", IsMandatoryUI);
}
/** Get Mandatory UI.
@return Data entry is required for data entry in the field */
public String getIsMandatoryUI()
{
return (String)get_Value("IsMandatoryUI");
}
/** Set Read Only.
@param IsReadOnly Field is read only */
public void setIsReadOnly (boolean IsReadOnly)
{
set_Value ("IsReadOnly", new Boolean(IsReadOnly));
}
/** Get Read Only.
@return Field is read only */
public boolean isReadOnly()
{
Object oo = get_Value("IsReadOnly");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Same Line.
@param IsSameLine Displayed on same line as previous field */
public void setIsSameLine (boolean IsSameLine)
{
set_Value ("IsSameLine", new Boolean(IsSameLine));
}
/** Get Same Line.
@return Displayed on same line as previous field */
public boolean isSameLine()
{
Object oo = get_Value("IsSameLine");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Multi-Row Sequence.
@param MRSeqNo Method of ordering fields in Multi-Row (Grid) View;
lowest number comes first */
public void setMRSeqNo (int MRSeqNo)
{
set_Value ("MRSeqNo", new Integer(MRSeqNo));
}
/** Get Multi-Row Sequence.
@return Method of ordering fields in Multi-Row (Grid) View;
lowest number comes first */
public int getMRSeqNo()
{
Integer ii = (Integer)get_Value("MRSeqNo");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Max Height.
@param MaxHeight Maximum Height in 1/72 if an inch - 0 = no restriction */
public void setMaxHeight (int MaxHeight)
{
set_Value ("MaxHeight", new Integer(MaxHeight));
}
/** Get Max Height.
@return Maximum Height in 1/72 if an inch - 0 = no restriction */
public int getMaxHeight()
{
Integer ii = (Integer)get_Value("MaxHeight");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Max Width.
@param MaxWidth Maximum Width in 1/72 if an inch - 0 = no restriction */
public void setMaxWidth (int MaxWidth)
{
set_Value ("MaxWidth", new Integer(MaxWidth));
}
/** Get Max Width.
@return Maximum Width in 1/72 if an inch - 0 = no restriction */
public int getMaxWidth()
{
Integer ii = (Integer)get_Value("MaxWidth");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Name.
@param Name Alphanumeric identifier of the entity */
public void setName (String Name)
{
if (Name == null) throw new IllegalArgumentException ("Name is mandatory.");
int length = p_info.getFieldLength("Name");
if (Name.length() > length)
{
log.warning("Length > " + length + " - truncated");
Name = Name.substring(0,length);
}
set_Value ("Name", Name);
}
/** Get Name.
@return Alphanumeric identifier of the entity */
public String getName()
{
return (String)get_Value("Name");
}
/** Get Record ID/ColumnName
@return ID/ColumnName pair */
public KeyNamePair getKeyNamePair()
{
return new KeyNamePair(get_ID(), getName());
}
/** ObscureType AD_Reference_ID=291 */
public static final int OBSCURETYPE_AD_Reference_ID=291;
/** Obscure Digits but last 4 = 904 */
public static final String OBSCURETYPE_ObscureDigitsButLast4 = "904";
/** Obscure Digits but first/last 4 = 944 */
public static final String OBSCURETYPE_ObscureDigitsButFirstLast4 = "944";
/** Obscure AlphaNumeric but last 4 = A04 */
public static final String OBSCURETYPE_ObscureAlphaNumericButLast4 = "A04";
/** Obscure AlphaNumeric but first/last 4 = A44 */
public static final String OBSCURETYPE_ObscureAlphaNumericButFirstLast4 = "A44";
/** Is test a valid value.
@param test testvalue
@return true if valid **/
public boolean isObscureTypeValid (String test)
{
return test == null || test.equals("904") || test.equals("944") || test.equals("A04") || test.equals("A44");
}
/** Set Obscure.
@param ObscureType Type of obscuring the data (limiting the display) */
public void setObscureType (String ObscureType)
{
if (!isObscureTypeValid(ObscureType))
throw new IllegalArgumentException ("ObscureType Invalid value - " + ObscureType + " - Reference_ID=291 - 904 - 944 - A04 - A44");
int length = p_info.getFieldLength("ObscureType");
if (ObscureType != null && ObscureType.length() > length)
{
log.warning("Length > " + length + " - truncated");
ObscureType = ObscureType.substring(0,length);
}
set_Value ("ObscureType", ObscureType);
}
/** Get Obscure.
@return Type of obscuring the data (limiting the display) */
public String getObscureType()
{
return (String)get_Value("ObscureType");
}
/** Set Sequence.
@param SeqNo Method of ordering elements;
lowest number comes first */
public void setSeqNo (int SeqNo)
{
set_Value ("SeqNo", new Integer(SeqNo));
}
/** Get Sequence.
@return Method of ordering elements;
lowest number comes first */
public int getSeqNo()
{
Integer ii = (Integer)get_Value("SeqNo");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Record Sort No.
@param SortNo Determines in what order the records are displayed */
public void setSortNo (BigDecimal SortNo)
{
set_Value ("SortNo", SortNo);
}
/** Get Record Sort No.
@return Determines in what order the records are displayed */
public BigDecimal getSortNo()
{
BigDecimal bd = (BigDecimal)get_Value("SortNo");
if (bd == null) return Env.ZERO;
return bd;
}
}
The table below shows all metrics for X_AD_Field.java.




