X_I_BPartner.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 I_BPartner
* @author Jorg Janke (generated)
* @version Release 3.1.0 - $Id$ */
public class X_I_BPartner extends PO
{
/** Standard Constructor
@param ctx context
@param I_BPartner_ID id
@param trxName transaction
*/
public X_I_BPartner (Ctx ctx, int I_BPartner_ID, String trxName)
{
super (ctx, I_BPartner_ID, trxName);
/** if (I_BPartner_ID == 0)
{
setI_BPartner_ID (0);
setI_IsImported (null); // N
}
*/
}
/** Load Constructor
@param ctx context
@param rs result set
@param trxName transaction
*/
public X_I_BPartner (Ctx ctx, ResultSet rs, String trxName)
{
super (ctx, rs, trxName);
}
/** Serial Version No */
static final long serialVersionUID = 27495261242789L;
/** Last Updated Timestamp 2008-06-10 15:12:06.0 */
public static final long updatedMS = 1213135926000L;
/** AD_Table_ID=533 */
public static final int Table_ID=533;
/** TableName=I_BPartner */
public static final String Table_Name="I_BPartner";
protected static KeyNamePair Model = new KeyNamePair(Table_ID,"I_BPartner");
protected BigDecimal accessLevel = new BigDecimal(2);
/** AccessLevel
@return 2 - Client
*/
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_I_BPartner[").append(get_ID()).append("]");
return sb.toString();
}
/** Set User/Contact.
@param AD_User_ID User within the system - Internal or Business Partner Contact */
public void setAD_User_ID (int AD_User_ID)
{
if (AD_User_ID <= 0) set_Value ("AD_User_ID", null);
else
set_Value ("AD_User_ID", new Integer(AD_User_ID));
}
/** Get User/Contact.
@return User within the system - Internal or Business Partner Contact */
public int getAD_User_ID()
{
Integer ii = (Integer)get_Value("AD_User_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Address 1.
@param Address1 Address line 1 for this location */
public void setAddress1 (String Address1)
{
int length = p_info.getFieldLength("Address1");
if (Address1 != null && Address1.length() > length)
{
log.warning("Length > " + length + " - truncated");
Address1 = Address1.substring(0,length);
}
set_Value ("Address1", Address1);
}
/** Get Address 1.
@return Address line 1 for this location */
public String getAddress1()
{
return (String)get_Value("Address1");
}
/** Set Address 2.
@param Address2 Address line 2 for this location */
public void setAddress2 (String Address2)
{
int length = p_info.getFieldLength("Address2");
if (Address2 != null && Address2.length() > length)
{
log.warning("Length > " + length + " - truncated");
Address2 = Address2.substring(0,length);
}
set_Value ("Address2", Address2);
}
/** Get Address 2.
@return Address line 2 for this location */
public String getAddress2()
{
return (String)get_Value("Address2");
}
/** Set Address 3.
@param Address3 Address Line 3 for the location */
public void setAddress3 (String Address3)
{
int length = p_info.getFieldLength("Address3");
if (Address3 != null && Address3.length() > length)
{
log.warning("Length > " + length + " - truncated");
Address3 = Address3.substring(0,length);
}
set_Value ("Address3", Address3);
}
/** Get Address 3.
@return Address Line 3 for the location */
public String getAddress3()
{
return (String)get_Value("Address3");
}
/** Set Address 4.
@param Address4 Address Line 4 for the location */
public void setAddress4 (String Address4)
{
int length = p_info.getFieldLength("Address4");
if (Address4 != null && Address4.length() > length)
{
log.warning("Length > " + length + " - truncated");
Address4 = Address4.substring(0,length);
}
set_Value ("Address4", Address4);
}
/** Get Address 4.
@return Address Line 4 for the location */
public String getAddress4()
{
return (String)get_Value("Address4");
}
/** Set BP Contact Greeting.
@param BPContactGreeting Greeting for Business Partner Contact */
public void setBPContactGreeting (String BPContactGreeting)
{
int length = p_info.getFieldLength("BPContactGreeting");
if (BPContactGreeting != null && BPContactGreeting.length() > length)
{
log.warning("Length > " + length + " - truncated");
BPContactGreeting = BPContactGreeting.substring(0,length);
}
set_Value ("BPContactGreeting", BPContactGreeting);
}
/** Get BP Contact Greeting.
@return Greeting for Business Partner Contact */
public String getBPContactGreeting()
{
return (String)get_Value("BPContactGreeting");
}
/** Set Birthday.
@param Birthday Birthday or Anniversary day */
public void setBirthday (Timestamp Birthday)
{
set_Value ("Birthday", Birthday);
}
/** Get Birthday.
@return Birthday or Anniversary day */
public Timestamp getBirthday()
{
return (Timestamp)get_Value("Birthday");
}
/** Set Business Partner Group.
@param C_BP_Group_ID Business Partner Group */
public void setC_BP_Group_ID (int C_BP_Group_ID)
{
if (C_BP_Group_ID <= 0) set_Value ("C_BP_Group_ID", null);
else
set_Value ("C_BP_Group_ID", new Integer(C_BP_Group_ID));
}
/** Get Business Partner Group.
@return Business Partner Group */
public int getC_BP_Group_ID()
{
Integer ii = (Integer)get_Value("C_BP_Group_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Business Partner.
@param C_BPartner_ID Identifies a Business Partner */
public void setC_BPartner_ID (int C_BPartner_ID)
{
if (C_BPartner_ID <= 0) set_Value ("C_BPartner_ID", null);
else
set_Value ("C_BPartner_ID", new Integer(C_BPartner_ID));
}
/** Get Business Partner.
@return Identifies a Business Partner */
public int getC_BPartner_ID()
{
Integer ii = (Integer)get_Value("C_BPartner_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Partner Location.
@param C_BPartner_Location_ID Identifies the (ship to) address for this Business Partner */
public void setC_BPartner_Location_ID (int C_BPartner_Location_ID)
{
if (C_BPartner_Location_ID <= 0) set_Value ("C_BPartner_Location_ID", null);
else
set_Value ("C_BPartner_Location_ID", new Integer(C_BPartner_Location_ID));
}
/** Get Partner Location.
@return Identifies the (ship to) address for this Business Partner */
public int getC_BPartner_Location_ID()
{
Integer ii = (Integer)get_Value("C_BPartner_Location_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Country.
@param C_Country_ID Country */
public void setC_Country_ID (int C_Country_ID)
{
if (C_Country_ID <= 0) set_Value ("C_Country_ID", null);
else
set_Value ("C_Country_ID", new Integer(C_Country_ID));
}
/** Get Country.
@return Country */
public int getC_Country_ID()
{
Integer ii = (Integer)get_Value("C_Country_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Greeting.
@param C_Greeting_ID Greeting to print on correspondence */
public void setC_Greeting_ID (int C_Greeting_ID)
{
if (C_Greeting_ID <= 0) set_Value ("C_Greeting_ID", null);
else
set_Value ("C_Greeting_ID", new Integer(C_Greeting_ID));
}
/** Get Greeting.
@return Greeting to print on correspondence */
public int getC_Greeting_ID()
{
Integer ii = (Integer)get_Value("C_Greeting_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Region.
@param C_Region_ID Identifies a geographical Region */
public void setC_Region_ID (int C_Region_ID)
{
if (C_Region_ID <= 0) set_Value ("C_Region_ID", null);
else
set_Value ("C_Region_ID", new Integer(C_Region_ID));
}
/** Get Region.
@return Identifies a geographical Region */
public int getC_Region_ID()
{
Integer ii = (Integer)get_Value("C_Region_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set City.
@param City Identifies a City */
public void setCity (String City)
{
int length = p_info.getFieldLength("City");
if (City != null && City.length() > length)
{
log.warning("Length > " + length + " - truncated");
City = City.substring(0,length);
}
set_Value ("City", City);
}
/** Get City.
@return Identifies a City */
public String getCity()
{
return (String)get_Value("City");
}
/** Set Comments.
@param Comments Comments or additional information */
public void setComments (String Comments)
{
int length = p_info.getFieldLength("Comments");
if (Comments != null && Comments.length() > length)
{
log.warning("Length > " + length + " - truncated");
Comments = Comments.substring(0,length);
}
set_Value ("Comments", Comments);
}
/** Get Comments.
@return Comments or additional information */
public String getComments()
{
return (String)get_Value("Comments");
}
/** Set Contact Description.
@param ContactDescription Description of Contact */
public void setContactDescription (String ContactDescription)
{
int length = p_info.getFieldLength("ContactDescription");
if (ContactDescription != null && ContactDescription.length() > length)
{
log.warning("Length > " + length + " - truncated");
ContactDescription = ContactDescription.substring(0,length);
}
set_Value ("ContactDescription", ContactDescription);
}
/** Get Contact Description.
@return Description of Contact */
public String getContactDescription()
{
return (String)get_Value("ContactDescription");
}
/** Set Contact Name.
@param ContactName Business Partner Contact Name */
public void setContactName (String ContactName)
{
int length = p_info.getFieldLength("ContactName");
if (ContactName != null && ContactName.length() > length)
{
log.warning("Length > " + length + " - truncated");
ContactName = ContactName.substring(0,length);
}
set_Value ("ContactName", ContactName);
}
/** Get Contact Name.
@return Business Partner Contact Name */
public String getContactName()
{
return (String)get_Value("ContactName");
}
/** Set ISO Country Code.
@param CountryCode Upper-case two-letter alphabetic ISO Country code according to ISO 3166-1 - http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html */
public void setCountryCode (String CountryCode)
{
int length = p_info.getFieldLength("CountryCode");
if (CountryCode != null && CountryCode.length() > length)
{
log.warning("Length > " + length + " - truncated");
CountryCode = CountryCode.substring(0,length);
}
set_Value ("CountryCode", CountryCode);
}
/** Get ISO Country Code.
@return Upper-case two-letter alphabetic ISO Country code according to ISO 3166-1 - http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html */
public String getCountryCode()
{
return (String)get_Value("CountryCode");
}
/** Set D-U-N-S.
@param DUNS Creditor Check (Dun & Bradstreet) Number */
public void setDUNS (String DUNS)
{
int length = p_info.getFieldLength("DUNS");
if (DUNS != null && DUNS.length() > length)
{
log.warning("Length > " + length + " - truncated");
DUNS = DUNS.substring(0,length);
}
set_Value ("DUNS", DUNS);
}
/** Get D-U-N-S.
@return Creditor Check (Dun & Bradstreet) Number */
public String getDUNS()
{
return (String)get_Value("DUNS");
}
/** 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 EMail Address.
@param EMail Electronic Mail Address */
public void setEMail (String EMail)
{
int length = p_info.getFieldLength("EMail");
if (EMail != null && EMail.length() > length)
{
log.warning("Length > " + length + " - truncated");
EMail = EMail.substring(0,length);
}
set_Value ("EMail", EMail);
}
/** Get EMail Address.
@return Electronic Mail Address */
public String getEMail()
{
return (String)get_Value("EMail");
}
/** Set Fax.
@param Fax Facsimile number */
public void setFax (String Fax)
{
int length = p_info.getFieldLength("Fax");
if (Fax != null && Fax.length() > length)
{
log.warning("Length > " + length + " - truncated");
Fax = Fax.substring(0,length);
}
set_Value ("Fax", Fax);
}
/** Get Fax.
@return Facsimile number */
public String getFax()
{
return (String)get_Value("Fax");
}
/** Set Group Key.
@param GroupValue Business Partner Group Key */
public void setGroupValue (String GroupValue)
{
int length = p_info.getFieldLength("GroupValue");
if (GroupValue != null && GroupValue.length() > length)
{
log.warning("Length > " + length + " - truncated");
GroupValue = GroupValue.substring(0,length);
}
set_Value ("GroupValue", GroupValue);
}
/** Get Group Key.
@return Business Partner Group Key */
public String getGroupValue()
{
return (String)get_Value("GroupValue");
}
/** Set Import Business Partner.
@param I_BPartner_ID Import Business Partner */
public void setI_BPartner_ID (int I_BPartner_ID)
{
if (I_BPartner_ID < 1) throw new IllegalArgumentException ("I_BPartner_ID is mandatory.");
set_ValueNoCheck ("I_BPartner_ID", new Integer(I_BPartner_ID));
}
/** Get Import Business Partner.
@return Import Business Partner */
public int getI_BPartner_ID()
{
Integer ii = (Integer)get_Value("I_BPartner_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Import Error Message.
@param I_ErrorMsg Messages generated from import process */
public void setI_ErrorMsg (String I_ErrorMsg)
{
int length = p_info.getFieldLength("I_ErrorMsg");
if (I_ErrorMsg != null && I_ErrorMsg.length() > length)
{
log.warning("Length > " + length + " - truncated");
I_ErrorMsg = I_ErrorMsg.substring(0,length);
}
set_Value ("I_ErrorMsg", I_ErrorMsg);
}
/** Get Import Error Message.
@return Messages generated from import process */
public String getI_ErrorMsg()
{
return (String)get_Value("I_ErrorMsg");
}
/** I_IsImported AD_Reference_ID=420 */
public static final int I_ISIMPORTED_AD_Reference_ID=420;
/** Error = E */
public static final String I_ISIMPORTED_Error = "E";
/** No = N */
public static final String I_ISIMPORTED_No = "N";
/** Yes = Y */
public static final String I_ISIMPORTED_Yes = "Y";
/** Is test a valid value.
@param test testvalue
@return true if valid **/
public boolean isI_IsImportedValid (String test)
{
return test.equals("E") || test.equals("N") || test.equals("Y");
}
/** Set Imported.
@param I_IsImported Has this import been processed? */
public void setI_IsImported (String I_IsImported)
{
if (I_IsImported == null) throw new IllegalArgumentException ("I_IsImported is mandatory");
if (!isI_IsImportedValid(I_IsImported))
throw new IllegalArgumentException ("I_IsImported Invalid value - " + I_IsImported + " - Reference_ID=420 - E - N - Y");
int length = p_info.getFieldLength("I_IsImported");
if (I_IsImported.length() > length)
{
log.warning("Length > " + length + " - truncated");
I_IsImported = I_IsImported.substring(0,length);
}
set_Value ("I_IsImported", I_IsImported);
}
/** Get Imported.
@return Has this import been processed? */
public String getI_IsImported()
{
return (String)get_Value("I_IsImported");
}
/** Set Interest Area.
@param InterestAreaName Name of the Interest Area */
public void setInterestAreaName (String InterestAreaName)
{
int length = p_info.getFieldLength("InterestAreaName");
if (InterestAreaName != null && InterestAreaName.length() > length)
{
log.warning("Length > " + length + " - truncated");
InterestAreaName = InterestAreaName.substring(0,length);
}
set_Value ("InterestAreaName", InterestAreaName);
}
/** Get Interest Area.
@return Name of the Interest Area */
public String getInterestAreaName()
{
return (String)get_Value("InterestAreaName");
}
/** Set NAICS/SIC.
@param NAICS Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html */
public void setNAICS (String NAICS)
{
int length = p_info.getFieldLength("NAICS");
if (NAICS != null && NAICS.length() > length)
{
log.warning("Length > " + length + " - truncated");
NAICS = NAICS.substring(0,length);
}
set_Value ("NAICS", NAICS);
}
/** Get NAICS/SIC.
@return Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html */
public String getNAICS()
{
return (String)get_Value("NAICS");
}
/** Set Name.
@param Name Alphanumeric identifier of the entity */
public void setName (String Name)
{
int length = p_info.getFieldLength("Name");
if (Name != null && 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");
}
/** Set Name 2.
@param Name2 Additional Name */
public void setName2 (String Name2)
{
int length = p_info.getFieldLength("Name2");
if (Name2 != null && Name2.length() > length)
{
log.warning("Length > " + length + " - truncated");
Name2 = Name2.substring(0,length);
}
set_Value ("Name2", Name2);
}
/** Get Name 2.
@return Additional Name */
public String getName2()
{
return (String)get_Value("Name2");
}
/** Set Password.
@param Password Password of any length (case sensitive) */
public void setPassword (String Password)
{
int length = p_info.getFieldLength("Password");
if (Password != null && Password.length() > length)
{
log.warning("Length > " + length + " - truncated");
Password = Password.substring(0,length);
}
set_Value ("Password", Password);
}
/** Get Password.
@return Password of any length (case sensitive) */
public String getPassword()
{
return (String)get_Value("Password");
}
/** Set Phone.
@param Phone Identifies a telephone number */
public void setPhone (String Phone)
{
int length = p_info.getFieldLength("Phone");
if (Phone != null && Phone.length() > length)
{
log.warning("Length > " + length + " - truncated");
Phone = Phone.substring(0,length);
}
set_Value ("Phone", Phone);
}
/** Get Phone.
@return Identifies a telephone number */
public String getPhone()
{
return (String)get_Value("Phone");
}
/** Set 2nd Phone.
@param Phone2 Identifies an alternate telephone number. */
public void setPhone2 (String Phone2)
{
int length = p_info.getFieldLength("Phone2");
if (Phone2 != null && Phone2.length() > length)
{
log.warning("Length > " + length + " - truncated");
Phone2 = Phone2.substring(0,length);
}
set_Value ("Phone2", Phone2);
}
/** Get 2nd Phone.
@return Identifies an alternate telephone number. */
public String getPhone2()
{
return (String)get_Value("Phone2");
}
/** Set ZIP.
@param Postal Postal code */
public void setPostal (String Postal)
{
int length = p_info.getFieldLength("Postal");
if (Postal != null && Postal.length() > length)
{
log.warning("Length > " + length + " - truncated");
Postal = Postal.substring(0,length);
}
set_Value ("Postal", Postal);
}
/** Get ZIP.
@return Postal code */
public String getPostal()
{
return (String)get_Value("Postal");
}
/** Set -.
@param Postal_Add Additional ZIP or Postal code */
public void setPostal_Add (String Postal_Add)
{
int length = p_info.getFieldLength("Postal_Add");
if (Postal_Add != null && Postal_Add.length() > length)
{
log.warning("Length > " + length + " - truncated");
Postal_Add = Postal_Add.substring(0,length);
}
set_Value ("Postal_Add", Postal_Add);
}
/** Get -.
@return Additional ZIP or Postal code */
public String getPostal_Add()
{
return (String)get_Value("Postal_Add");
}
/** Set Processed.
@param Processed The document has been processed */
public void setProcessed (boolean Processed)
{
set_ValueNoCheck ("Processed", new Boolean(Processed));
}
/** Get Processed.
@return The document has been processed */
public boolean isProcessed()
{
Object oo = get_Value("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 ("Processing", new Boolean(Processing));
}
/** Get Process Now.
@return Process Now */
public boolean isProcessing()
{
Object oo = get_Value("Processing");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Interest Area.
@param R_InterestArea_ID Interest Area or Topic */
public void setR_InterestArea_ID (int R_InterestArea_ID)
{
if (R_InterestArea_ID <= 0) set_Value ("R_InterestArea_ID", null);
else
set_Value ("R_InterestArea_ID", new Integer(R_InterestArea_ID));
}
/** Get Interest Area.
@return Interest Area or Topic */
public int getR_InterestArea_ID()
{
Integer ii = (Integer)get_Value("R_InterestArea_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Region.
@param RegionName Name of the Region */
public void setRegionName (String RegionName)
{
int length = p_info.getFieldLength("RegionName");
if (RegionName != null && RegionName.length() > length)
{
log.warning("Length > " + length + " - truncated");
RegionName = RegionName.substring(0,length);
}
set_Value ("RegionName", RegionName);
}
/** Get Region.
@return Name of the Region */
public String getRegionName()
{
return (String)get_Value("RegionName");
}
/** Set Tax ID.
@param TaxID Tax Identification */
public void setTaxID (String TaxID)
{
int length = p_info.getFieldLength("TaxID");
if (TaxID != null && TaxID.length() > length)
{
log.warning("Length > " + length + " - truncated");
TaxID = TaxID.substring(0,length);
}
set_Value ("TaxID", TaxID);
}
/** Get Tax ID.
@return Tax Identification */
public String getTaxID()
{
return (String)get_Value("TaxID");
}
/** Set Title.
@param Title Title of the Contact */
public void setTitle (String Title)
{
int length = p_info.getFieldLength("Title");
if (Title != null && Title.length() > length)
{
log.warning("Length > " + length + " - truncated");
Title = Title.substring(0,length);
}
set_Value ("Title", Title);
}
/** Get Title.
@return Title of the Contact */
public String getTitle()
{
return (String)get_Value("Title");
}
/** Set Search Key.
@param Value Search key for the record in the format required - must be unique */
public void setValue (String Value)
{
int length = p_info.getFieldLength("Value");
if (Value != null && Value.length() > length)
{
log.warning("Length > " + length + " - truncated");
Value = Value.substring(0,length);
}
set_Value ("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("Value");
}
/** Get Record ID/ColumnName
@return ID/ColumnName pair */
public KeyNamePair getKeyNamePair()
{
return new KeyNamePair(get_ID(), getValue());
}
}
The table below shows all metrics for X_I_BPartner.java.




