TypeFixes. Fixed typo mistakes.

Use constants instead of hard-coded strings.
This commit is contained in:
trifonnt 2009-01-28 20:25:53 +00:00
parent 4e078ebad6
commit 64dc903ce0
6 changed files with 33 additions and 38 deletions

View File

@ -354,7 +354,7 @@ public class MContainer extends X_CM_Container
protected void updateTTables (MWebProject project, MCStage stage, protected void updateTTables (MWebProject project, MCStage stage,
String trxName) String trxName)
{ {
int[] tableKeys = X_CM_CStageTTable.getAllIDs ("CM_CStageTTable", int[] tableKeys = X_CM_CStageTTable.getAllIDs (I_CM_CStageTTable.Table_Name,
"CM_CStage_ID=" + stage.get_ID (), trxName); "CM_CStage_ID=" + stage.get_ID (), trxName);
if (tableKeys != null && tableKeys.length > 0) if (tableKeys != null && tableKeys.length > 0)
{ {
@ -363,7 +363,7 @@ public class MContainer extends X_CM_Container
X_CM_CStageTTable thisStageTTable = new X_CM_CStageTTable ( X_CM_CStageTTable thisStageTTable = new X_CM_CStageTTable (
project.getCtx (), tableKeys[i], trxName); project.getCtx (), tableKeys[i], trxName);
int[] thisContainerTTableKeys = X_CM_ContainerTTable.getAllIDs ( int[] thisContainerTTableKeys = X_CM_ContainerTTable.getAllIDs (
"CM_ContainerTTable", "CM_Container_ID=" + stage.get_ID () I_CM_ContainerTTable.Table_Name, "CM_Container_ID=" + stage.get_ID ()
+ " AND CM_TemplateTable_ID=" + " AND CM_TemplateTable_ID="
+ thisStageTTable.getCM_TemplateTable_ID (), trxName); + thisStageTTable.getCM_TemplateTable_ID (), trxName);
X_CM_ContainerTTable thisContainerTTable; X_CM_ContainerTTable thisContainerTTable;

View File

@ -102,7 +102,7 @@ public abstract class PO
static protected final String ENTITYTYPE_Dictionary = "D"; static protected final String ENTITYTYPE_Dictionary = "D";
/************************************************************************** /**************************************************************************
* Create New Persisent Object * Create New Persistent Object
* @param ctx context * @param ctx context
*/ */
public PO (Properties ctx) public PO (Properties ctx)
@ -175,7 +175,7 @@ public abstract class PO
/** /**
* Create New PO by Copying existing (key not copied). * Create New PO by Copying existing (key not copied).
* @param ctx context * @param ctx context
* @param source souce object * @param source source object
* @param AD_Client_ID client * @param AD_Client_ID client
* @param AD_Org_ID org * @param AD_Org_ID org
*/ */
@ -202,7 +202,7 @@ public abstract class PO
/** Original Values */ /** Original Values */
private Object[] m_oldValues = null; private Object[] m_oldValues = null;
/** New Valies */ /** New Values */
private Object[] m_newValues = null; private Object[] m_newValues = null;
/** Record_IDs */ /** Record_IDs */
@ -211,7 +211,7 @@ public abstract class PO
private String[] m_KeyColumns = null; private String[] m_KeyColumns = null;
/** Create New for Multi Key */ /** Create New for Multi Key */
private boolean m_createNew = false; private boolean m_createNew = false;
/** Attachment with entriess */ /** Attachment with entries */
private MAttachment m_attachment = null; private MAttachment m_attachment = null;
/** Deleted ID */ /** Deleted ID */
private int m_idOld = 0; private int m_idOld = 0;
@ -223,7 +223,7 @@ public abstract class PO
/** Accounting Columns */ /** Accounting Columns */
private ArrayList <String> s_acctColumns = null; private ArrayList <String> s_acctColumns = null;
/** TODO - Trifon */ /** Trifon - Indicates that this record is created by replication functionality.*/
private boolean m_isReplication = false; private boolean m_isReplication = false;
/** Access Level S__ 100 4 System info */ /** Access Level S__ 100 4 System info */
@ -266,7 +266,7 @@ public abstract class PO
/** /**
* Equals based on ID * Equals based on ID
* @param cmp comperator * @param cmp comparator
* @return true if ID the same * @return true if ID the same
*/ */
public boolean equals (Object cmp) public boolean equals (Object cmp)
@ -581,11 +581,11 @@ public abstract class PO
/** /**
* Return new - old. * Return new - old.
* - New Value if Old Valus is null * - New Value if Old Value is null
* - New Value - Old Value if Number * - New Value - Old Value if Number
* - otherwise null * - otherwise null
* @param index index * @param index index
* @return new - old or null if not appropiate or not changed * @return new - old or null if not appropriate or not changed
*/ */
public final Object get_ValueDifference (int index) public final Object get_ValueDifference (int index)
{ {
@ -620,11 +620,11 @@ public abstract class PO
/** /**
* Return new - old. * Return new - old.
* - New Value if Old Valus is null * - New Value if Old Value is null
* - New Value - Old Value if Number * - New Value - Old Value if Number
* - otherwise null * - otherwise null
* @param columnName column name * @param columnName column name
* @return new - old or null if not appropiate or not changed * @return new - old or null if not appropriate or not changed
*/ */
public final Object get_ValueDifference (String columnName) public final Object get_ValueDifference (String columnName)
{ {
@ -677,7 +677,7 @@ public abstract class PO
} // setValueE } // setValueE
/** /**
* Set Value if updateable and correct class. * Set Value if updteable and correct class.
* (and to NULL if not mandatory) * (and to NULL if not mandatory)
* @param index index * @param index index
* @param value value * @param value value
@ -2564,8 +2564,8 @@ public abstract class PO
/** /**
* Get ID for new record during save. * Get ID for new record during save.
* You can overwite this to explicitly set the ID * You can overwrite this to explicitly set the ID
* @return ID to be used or 0 for fedault logic * @return ID to be used or 0 for default logic
*/ */
protected int saveNew_getID() protected int saveNew_getID()
{ {

View File

@ -25,7 +25,7 @@ import org.compiere.util.DB;
import org.compiere.util.Env; import org.compiere.util.Env;
/** /**
* Maintain AD_Table_ID/Record_ID contraint * Maintain AD_Table_ID/Record_ID constraint
* *
* @author Jorg Janke * @author Jorg Janke
* @version $Id: PO_Record.java,v 1.4 2006/07/30 00:58:04 jjanke Exp $ * @version $Id: PO_Record.java,v 1.4 2006/07/30 00:58:04 jjanke Exp $

View File

@ -30,7 +30,7 @@ public class Trace
/** /**
* Get Caller Array * Get Caller Array
* *
* @param caller Optional Thowable/Exception * @param caller Optional Throwable/Exception
* @param maxNestLevel maximum call nesting level - 0 is all * @param maxNestLevel maximum call nesting level - 0 is all
* @return Array of class.method(file:line) * @return Array of class.method(file:line)
*/ */
@ -86,7 +86,7 @@ public class Trace
} // isCalledFrom } // isCalledFrom
/** /**
* Print Stack Tace Info (raw) adempiereOnly - first9only * Print Stack Trace Info (raw) adempiereOnly - first9only
*/ */
public static void printStack() public static void printStack()
{ {
@ -94,7 +94,7 @@ public class Trace
} // printStack } // printStack
/** /**
* Print Stack Tace Info (raw) * Print Stack Trace Info (raw)
*/ */
public static void printStack (boolean adempiereOnly, boolean first9only) public static void printStack (boolean adempiereOnly, boolean first9only)
{ {

View File

@ -53,7 +53,7 @@ public abstract class AbstractPOWrapper {
/** /**
* Equals based on ID * Equals based on ID
* @param cmp comperator * @param cmp comparator
* @return true if ID the same * @return true if ID the same
*/ */
public boolean equals(Object cmp) { public boolean equals(Object cmp) {
@ -190,11 +190,11 @@ public abstract class AbstractPOWrapper {
/** /**
* Return new - old. * Return new - old.
* - New Value if Old Valus is null * - New Value if Old Value is null
* - New Value - Old Value if Number * - New Value - Old Value if Number
* - otherwise null * - otherwise null
* @param index index * @param index index
* @return new - old or null if not appropiate or not changed * @return new - old or null if not appropriate or not changed
*/ */
public Object get_ValueDifference(int index) { public Object get_ValueDifference(int index) {
@ -203,11 +203,11 @@ public abstract class AbstractPOWrapper {
/** /**
* Return new - old. * Return new - old.
* - New Value if Old Valus is null * - New Value if Old Value is null
* - New Value - Old Value if Number * - New Value - Old Value if Number
* - otherwise null * - otherwise null
* @param columnName column name * @param columnName column name
* @return new - old or null if not appropiate or not changed * @return new - old or null if not appropriate or not changed
*/ */
public Object get_ValueDifference(String columnName) { public Object get_ValueDifference(String columnName) {

View File

@ -20,6 +20,8 @@ import java.sql.Timestamp;
import java.util.Properties; import java.util.Properties;
import org.compiere.model.PO; import org.compiere.model.PO;
import org.eevolution.model.I_PP_Order_BOM;
import org.eevolution.model.I_PP_Product_BOM;
import org.eevolution.model.MPPOrderBOM; import org.eevolution.model.MPPOrderBOM;
import org.eevolution.model.MPPProductBOM; import org.eevolution.model.MPPProductBOM;
import org.eevolution.model.reasoner.StorageReasoner; import org.eevolution.model.reasoner.StorageReasoner;
@ -36,13 +38,10 @@ public class BOMWrapper extends AbstractPOWrapper {
public static String tableName(String type) { public static String tableName(String type) {
if (BOM_TYPE_PRODUCT.equals(type)) { if (BOM_TYPE_PRODUCT.equals(type)) {
return I_PP_Product_BOM.Table_Name;
return MPPProductBOM.Table_Name;
} }
else if(BOM_TYPE_ORDER.equals(type)) { else if(BOM_TYPE_ORDER.equals(type)) {
return I_PP_Order_BOM.Table_Name;
//eevolution vpj-cd new version return MPPOrderBOM.Table_Name;
return MPPOrderBOM.Table_Name;
} }
return ""; return "";
@ -52,14 +51,10 @@ public class BOMWrapper extends AbstractPOWrapper {
String value = null; String value = null;
if (BOM_TYPE_PRODUCT.equals(type)) { if (BOM_TYPE_PRODUCT.equals(type)) {
return I_PP_Product_BOM.Table_Name;
// eevolution vpj-cd new version value = MPPProductBOM.Table_Name;
return "PP_Product_BOM";
} }
else if(BOM_TYPE_ORDER.equals(type)) { else if(BOM_TYPE_ORDER.equals(type)) {
return I_PP_Order_BOM.Table_Name;
// eevolution vpj-cd new version value = MPPOrderBOM.Table_Name;
return "PP_Order_BOM";
} }
return value+"_ID"; return value+"_ID";