diff --git a/org.adempiere.base.process/src/org/adempiere/process/ImmediateBankTransfer.java b/org.adempiere.base.process/src/org/adempiere/process/ImmediateBankTransfer.java index 90559dd7cc..30f125257a 100644 --- a/org.adempiere.base.process/src/org/adempiere/process/ImmediateBankTransfer.java +++ b/org.adempiere.base.process/src/org/adempiere/process/ImmediateBankTransfer.java @@ -72,7 +72,7 @@ public class ImmediateBankTransfer extends SvrProcess private String p_Name = ""; // Name private String p_Description= ""; // Description private int p_C_CashBook_ID = 0; // CashBook to be used as bridge - private BigDecimal p_Amount = Env.ZERO; // Amount to be transfered between the accounts + private BigDecimal p_Amount = Env.ZERO; // Amount to be transferred between the accounts private int p_From_C_BankAccount_ID = 0; // Bank Account From private int p_To_C_BankAccount_ID= 0; // Bank Account To private Timestamp p_StatementDate = null; // Date Statement diff --git a/org.adempiere.base.process/src/org/adempiere/process/PrepareMigrationScripts.java b/org.adempiere.base.process/src/org/adempiere/process/PrepareMigrationScripts.java index ab22fc099f..26bf6ca245 100644 --- a/org.adempiere.base.process/src/org/adempiere/process/PrepareMigrationScripts.java +++ b/org.adempiere.base.process/src/org/adempiere/process/PrepareMigrationScripts.java @@ -259,7 +259,7 @@ public class PrepareMigrationScripts extends SvrProcess { } } - return "Sucess"; + return "Success"; } @Override diff --git a/org.adempiere.base.process/src/org/compiere/process/AllocationAuto.java b/org.adempiere.base.process/src/org/compiere/process/AllocationAuto.java index b8c82ea535..3768e1fc6f 100644 --- a/org.adempiere.base.process/src/org/compiere/process/AllocationAuto.java +++ b/org.adempiere.base.process/src/org/compiere/process/AllocationAuto.java @@ -42,7 +42,7 @@ import org.compiere.util.Msg; * @author Jorg Janke * @version $Id: AllocationAuto.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $ */ -@org.adempiere.base.annotation.Process +@org.adempiere.base.annotation.Process public class AllocationAuto extends SvrProcess { /** BP Group */ @@ -718,7 +718,7 @@ public class AllocationAuto extends SvrProcess /********************************************************************************************** * Create Allocation allocation * @param C_Currency_ID currency - * @param description decription + * @param description description * @param Amount amount * @param DiscountAmt discount * @param WriteOffAmt write off diff --git a/org.adempiere.base.process/src/org/compiere/process/InventoryCountCreate.java b/org.adempiere.base.process/src/org/compiere/process/InventoryCountCreate.java index 597a637d5b..944f717116 100644 --- a/org.adempiere.base.process/src/org/compiere/process/InventoryCountCreate.java +++ b/org.adempiere.base.process/src/org/compiere/process/InventoryCountCreate.java @@ -41,7 +41,7 @@ import org.compiere.util.Env; * @author Jorg Janke * @version $Id: InventoryCountCreate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $ */ -@org.adempiere.base.annotation.Process +@org.adempiere.base.annotation.Process public class InventoryCountCreate extends SvrProcess { @@ -369,7 +369,7 @@ public class InventoryCountCreate extends SvrProcess * @param productCategoryId * @param categories * @param loopIndicatorId - * @return comma seperated list of category ids + * @return comma separated list of category ids * @throws AdempiereSystemError if a loop is detected */ private String getSubCategoriesString(int productCategoryId, Vector categories, int loopIndicatorId) throws AdempiereSystemError { diff --git a/org.adempiere.base.process/src/org/idempiere/process/ImportCSVProcess.java b/org.adempiere.base.process/src/org/idempiere/process/ImportCSVProcess.java index 8e92b4cef9..2ca4b50fc4 100644 --- a/org.adempiere.base.process/src/org/idempiere/process/ImportCSVProcess.java +++ b/org.adempiere.base.process/src/org/idempiere/process/ImportCSVProcess.java @@ -194,7 +194,7 @@ public class ImportCSVProcess extends SvrProcess implements DataStatusListener { log.warning(msg); } - // Refresh the list on dependant fields + // Refresh the list on dependent fields for (GridField dependentField : l_gridTab.getDependantFields(mField.getColumnName())) { // if the field has a lookup diff --git a/org.adempiere.base/src/org/adempiere/base/IBankStatementLoaderFactory.java b/org.adempiere.base/src/org/adempiere/base/IBankStatementLoaderFactory.java index 64b38339c5..b087d7b57c 100644 --- a/org.adempiere.base/src/org/adempiere/base/IBankStatementLoaderFactory.java +++ b/org.adempiere.base/src/org/adempiere/base/IBankStatementLoaderFactory.java @@ -29,7 +29,7 @@ public interface IBankStatementLoaderFactory { * This class will be implemented in OSGi plugins. Every plugin that * provides this service may or may not provide an BankStatementLoader * depending on the given classname. The classname can be given by the user - * in the "Bank" window in the "Bank Satement Loader" tab. By convention + * in the "Bank" window in the "Bank Statement Loader" tab. By convention * this classname is the fully qualified classname of the Loader class you * want to use. * diff --git a/org.adempiere.base/src/org/adempiere/base/event/RequestEventHandler.java b/org.adempiere.base/src/org/adempiere/base/event/RequestEventHandler.java index 3d634494fa..b15388da02 100644 --- a/org.adempiere.base/src/org/adempiere/base/event/RequestEventHandler.java +++ b/org.adempiere.base/src/org/adempiere/base/event/RequestEventHandler.java @@ -141,7 +141,7 @@ public class RequestEventHandler extends AbstractEventHandler implements Managed oldSalesRep_ID = ((Integer)oo).intValue(); if (oldSalesRep_ID != 0) { - // RequestActionTransfer - Request {0} was transfered by {1} from {2} to {3} + // RequestActionTransfer - Request {0} was transferred by {1} from {2} to {3} Object[] args = new Object[] {r.getDocumentNo(), MUser.getNameOfUser(AD_User_ID), MUser.getNameOfUser(oldSalesRep_ID), diff --git a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java index 767cfad433..59ece79133 100644 --- a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java +++ b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java @@ -230,7 +230,7 @@ public class GridTabCSVImporter implements IGridTabImporter rowsTmpResult.add(rawLine); continue; }else if(isMasterok && isDetail && !isDetailok){ - rawLine = rawLine + delimiter + quoteChar + "Record not proccesed due to detail record failure" + quoteChar + "\n"; + rawLine = rawLine + delimiter + quoteChar + "Record not processed due to detail record failure" + quoteChar + "\n"; rowsTmpResult.add(rawLine); continue; } @@ -826,7 +826,7 @@ public class GridTabCSVImporter implements IGridTabImporter wfProcess.setTransactionName(document.get_TrxName()); MWFProcess wdPro = ProcessUtil.startWorkFlow(Env.getCtx(),wfProcess, AD_Workflow_ID); if(wdPro == null) - return "Document action could not be proccesed"; + return "Document action could not be processed"; else if (wfProcess.isError()) return "Document action error: "+wfProcess.getSummary(); else diff --git a/org.adempiere.base/src/org/adempiere/process/RecreateStorageReservation.java b/org.adempiere.base/src/org/adempiere/process/RecreateStorageReservation.java index 149465a4ec..7a2c946a96 100644 --- a/org.adempiere.base/src/org/adempiere/process/RecreateStorageReservation.java +++ b/org.adempiere.base/src/org/adempiere/process/RecreateStorageReservation.java @@ -18,7 +18,7 @@ import org.compiere.util.DB; import org.compiere.util.Env; /** - * Re-create storage reservation records (M_StorageReservation) if there are storage record with invalid reserverd/ordered qty.
+ * Re-create storage reservation records (M_StorageReservation) if there are storage record with invalid reserved/ordered qty.
* Precautions: current code validate reservation makes via C_OrderLine only. */ @org.adempiere.base.annotation.Process diff --git a/org.adempiere.base/src/org/compiere/dbPort/Convert_SQL92.java b/org.adempiere.base/src/org/compiere/dbPort/Convert_SQL92.java index 834c6f9796..18f20447a8 100644 --- a/org.adempiere.base/src/org/compiere/dbPort/Convert_SQL92.java +++ b/org.adempiere.base/src/org/compiere/dbPort/Convert_SQL92.java @@ -258,7 +258,7 @@ public abstract class Convert_SQL92 extends Convert { .append(" ON (").append(second.getCondition()); joins.remove(j); // remove from join list fromAlias.remove(second.getJoinAlias()); // remove from table list - // additional join colums would come here + // additional join columns would come here newFrom.append(")"); // close ON //---- for (int k = i+1; k < joins.size(); k++) @@ -281,7 +281,7 @@ public abstract class Convert_SQL92 extends Convert { .append(" ON (").append(third.getCondition()); joins.remove(k); // remove from join list fromAlias.remove(third.getJoinAlias()); // remove from table list - // additional join colums would come here + // additional join columns would come here newFrom.append(")"); // close ON } else if (trace) diff --git a/org.adempiere.base/src/org/compiere/impexp/OFXBankStatementHandler.java b/org.adempiere.base/src/org/compiere/impexp/OFXBankStatementHandler.java index 1c964595a6..0b8fd4a8f9 100644 --- a/org.adempiere.base/src/org/compiere/impexp/OFXBankStatementHandler.java +++ b/org.adempiere.base/src/org/compiere/impexp/OFXBankStatementHandler.java @@ -291,14 +291,14 @@ public abstract class OFXBankStatementHandler extends DefaultHandler } //isValid /** - * Check wether the import was succesfull - * @return true if all statement lines have been imported succesfully + * Check whether the import was successful + * @return true if all statement lines have been imported successfully */ public boolean importSuccessfull() { /* * Currently there are no checks after the statement lines are read. - * Once all lines are read correctly a successfull import is assumed. + * Once all lines are read correctly a successful import is assumed. */ return m_success; } // importSuccessfull diff --git a/org.adempiere.base/src/org/compiere/model/AccessSqlParser.java b/org.adempiere.base/src/org/compiere/model/AccessSqlParser.java index f0c0827b1b..93036cfb3a 100644 --- a/org.adempiere.base/src/org/compiere/model/AccessSqlParser.java +++ b/org.adempiere.base/src/org/compiere/model/AccessSqlParser.java @@ -418,7 +418,7 @@ public class AccessSqlParser } // TableInfo /** - * Short Constuctor - no synonym + * Short Constructor - no synonym * @param tableName table */ public TableInfo (String tableName) diff --git a/org.adempiere.base/src/org/compiere/model/ArchiveFileSystem.java b/org.adempiere.base/src/org/compiere/model/ArchiveFileSystem.java index 2b5880bc66..dec29faef1 100644 --- a/org.adempiere.base/src/org/compiere/model/ArchiveFileSystem.java +++ b/org.adempiere.base/src/org/compiere/model/ArchiveFileSystem.java @@ -91,7 +91,7 @@ public class ArchiveFileSystem implements IArchiveStore { if (log.isLoggable(Level.FINE)) log.fine("filePath: " + filePath); if(filePath!=null){ filePath = filePath.replaceFirst(ARCHIVE_FOLDER_PLACEHOLDER, archivePathRoot.replaceAll("\\\\","\\\\\\\\")); - //just to be shure... + //just to be sure... String replaceSeparator = File.separator; if(!replaceSeparator.equals("/")){ replaceSeparator = "\\\\"; diff --git a/org.adempiere.base/src/org/compiere/model/AttachmentFileSystem.java b/org.adempiere.base/src/org/compiere/model/AttachmentFileSystem.java index fbb36495fa..7cb2312210 100644 --- a/org.adempiere.base/src/org/compiere/model/AttachmentFileSystem.java +++ b/org.adempiere.base/src/org/compiere/model/AttachmentFileSystem.java @@ -211,7 +211,7 @@ public class AttachmentFileSystem implements IAttachmentStore { if (log.isLoggable(Level.FINE)) log.fine("filePath: " + filePath); if(filePath!=null){ filePath = filePath.replaceFirst(attach.ATTACHMENT_FOLDER_PLACEHOLDER, attachmentPathRoot.replaceAll("\\\\","\\\\\\\\")); - //just to be shure... + //just to be sure... String replaceSeparator = File.separator; if(!replaceSeparator.equals("/")){ replaceSeparator = "\\\\"; diff --git a/org.adempiere.base/src/org/compiere/model/GridField.java b/org.adempiere.base/src/org/compiere/model/GridField.java index 891da4bb35..de545580e9 100644 --- a/org.adempiere.base/src/org/compiere/model/GridField.java +++ b/org.adempiere.base/src/org/compiere/model/GridField.java @@ -218,7 +218,7 @@ public class GridField return; } // Prevent loading of CreatedBy/UpdatedBy - if (m_vo.displayType == DisplayType.Table && m_vo.AD_Tab_ID > 0 + if (m_vo.displayType == DisplayType.Table && m_vo.AD_Tab_ID > 0 && (m_vo.ColumnName.equals("CreatedBy") || m_vo.ColumnName.equals("UpdatedBy")) ) { m_vo.lookupInfo.IsCreadedUpdatedBy = true; @@ -2056,7 +2056,7 @@ public class GridField * Set Value to null. *

* Do update context - called from GridTab.setCurrentRow. - * Send Bean PropertyChange event if there is a change (i.e curent value is not null). + * Send Bean PropertyChange event if there is a change (i.e current value is not null). */ public void setValueAndUpdateContext () { diff --git a/org.adempiere.base/src/org/compiere/model/GridFieldVO.java b/org.adempiere.base/src/org/compiere/model/GridFieldVO.java index c85fe84f42..f5e1b0d14a 100644 --- a/org.adempiere.base/src/org/compiere/model/GridFieldVO.java +++ b/org.adempiere.base/src/org/compiere/model/GridFieldVO.java @@ -633,7 +633,7 @@ public class GridFieldVO implements Serializable, Cloneable public int displayType = 0; /** Table ID */ public int AD_Table_ID = 0; - /** Clumn ID */ + /** Column ID */ public int AD_Column_ID = 0; /** Display Length */ public int DisplayLength = 0; @@ -647,7 +647,7 @@ public class GridFieldVO implements Serializable, Cloneable public int SeqNo = 0; /** Grid Display sequence */ public int SeqNoGrid = 0; - /** Dislay Logic, never set null for it */ + /** Display Logic, never set null for it */ public String DisplayLogic = ""; /** Default Value, never set null for it */ public String DefaultValue = ""; @@ -848,13 +848,13 @@ public class GridFieldVO implements Serializable, Cloneable * @param tabNo tab no * @param ad_Window_ID window id * @param ad_Tab_ID tab id - * @param TabReadOnly r/o - * @return Field or null - */ - public GridFieldVO clone(Properties ctx, int windowNo, int tabNo, - int ad_Window_ID, int ad_Tab_ID, - boolean TabReadOnly) - { + * @param TabReadOnly r/o + * @return Field or null + */ + public GridFieldVO clone(Properties ctx, int windowNo, int tabNo, + int ad_Window_ID, int ad_Tab_ID, + boolean TabReadOnly) + { GridFieldVO clone = null; clone = (GridFieldVO) clone(); clone.ctx = ctx; diff --git a/org.adempiere.base/src/org/compiere/model/GridTab.java b/org.adempiere.base/src/org/compiere/model/GridTab.java index 7e76257bf7..29297e0e24 100644 --- a/org.adempiere.base/src/org/compiere/model/GridTab.java +++ b/org.adempiere.base/src/org/compiere/model/GridTab.java @@ -849,7 +849,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable // e.g. Column=UPPER(Name), Key=AD_Element_ID, Query=UPPER(AD_Element.Name) LIKE '%CUSTOMER%' if (tableName == null) { - if (log.isLoggable(Level.INFO)) log.info ("Not successfull - Column=" + if (log.isLoggable(Level.INFO)) log.info ("Not successful - Column=" + colName + ", Key=" + tabKeyColumn + ", Query=" + query); return query.getWhereClause(true); @@ -2283,7 +2283,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable * * @param e event */ - @Override + @Override public void dataStatusChanged (DataStatusEvent e) { if (log.isLoggable(Level.FINE)) log.fine("#" + m_vo.TabNo + " - " + e.toString()); diff --git a/org.adempiere.base/src/org/compiere/model/GridTable.java b/org.adempiere.base/src/org/compiere/model/GridTable.java index 03d7209efb..7893bc8355 100644 --- a/org.adempiere.base/src/org/compiere/model/GridTable.java +++ b/org.adempiere.base/src/org/compiere/model/GridTable.java @@ -2157,7 +2157,7 @@ public class GridTable extends AbstractTableModel // Tab R/O if (m_readOnly) { - fireDataStatusEEvent("AccessCannotDelete", "", true); // previleges + fireDataStatusEEvent("AccessCannotDelete", "", true); // privileges return false; } diff --git a/org.adempiere.base/src/org/compiere/model/GridWindowVO.java b/org.adempiere.base/src/org/compiere/model/GridWindowVO.java index 3127f363ef..7f5afb0885 100644 --- a/org.adempiere.base/src/org/compiere/model/GridWindowVO.java +++ b/org.adempiere.base/src/org/compiere/model/GridWindowVO.java @@ -322,7 +322,7 @@ public class GridWindowVO implements Serializable public String AD_Window_UU = ""; /** Name */ public String Name = ""; - /** Desription */ + /** Description */ public String Description = ""; /** Help */ public String Help = ""; diff --git a/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java b/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java index 3f8fbd7cee..d0bd2b307f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java @@ -133,12 +133,12 @@ public interface I_U_POSTerminal public static final String COLUMNNAME_CashBookTransferType = "CashBookTransferType"; /** Set Cash Book Transfer Type. - * Where the money in the cash book should be transfered to. Either a Bank Account or another Cash Book + * Where the money in the cash book should be transferred to. Either a Bank Account or another Cash Book */ public void setCashBookTransferType (String CashBookTransferType); /** Get Cash Book Transfer Type. - * Where the money in the cash book should be transfered to. Either a Bank Account or another Cash Book + * Where the money in the cash book should be transferred to. Either a Bank Account or another Cash Book */ public String getCashBookTransferType(); diff --git a/org.adempiere.base/src/org/compiere/model/ImageFileStorageImpl.java b/org.adempiere.base/src/org/compiere/model/ImageFileStorageImpl.java index df863b8cec..080f87ee78 100644 --- a/org.adempiere.base/src/org/compiere/model/ImageFileStorageImpl.java +++ b/org.adempiere.base/src/org/compiere/model/ImageFileStorageImpl.java @@ -88,7 +88,7 @@ public class ImageFileStorageImpl implements IImageStore { if (log.isLoggable(Level.FINE)) log.fine("filePath: " + filePath); if(filePath!=null){ filePath = filePath.replaceFirst(IMAGE_FOLDER_PLACEHOLDER, imagePathRoot.replaceAll("\\\\","\\\\\\\\")); - //just to be shure... + //just to be sure... String replaceSeparator = File.separator; if(!replaceSeparator.equals("/")){ replaceSeparator = "\\\\"; diff --git a/org.adempiere.base/src/org/compiere/model/MAcctSchemaElement.java b/org.adempiere.base/src/org/compiere/model/MAcctSchemaElement.java index 12cea9ac60..bd09808b45 100644 --- a/org.adempiere.base/src/org/compiere/model/MAcctSchemaElement.java +++ b/org.adempiere.base/src/org/compiere/model/MAcctSchemaElement.java @@ -295,7 +295,7 @@ public class MAcctSchemaElement extends X_C_AcctSchema_Element implements Immuta /** * Set value for Account element type - * @param SeqNo squence + * @param SeqNo sequence * @param Name name * @param C_Element_ID element * @param C_ElementValue_ID element value diff --git a/org.adempiere.base/src/org/compiere/model/MAlertRule.java b/org.adempiere.base/src/org/compiere/model/MAlertRule.java index f51f6e5e81..d0f7ffbca9 100644 --- a/org.adempiere.base/src/org/compiere/model/MAlertRule.java +++ b/org.adempiere.base/src/org/compiere/model/MAlertRule.java @@ -37,18 +37,18 @@ public class MAlertRule extends X_AD_AlertRule { private static final long serialVersionUID = -1267260460210893262L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_AlertRule_UU UUID key - * @param trxName Transaction - */ - public MAlertRule(Properties ctx, String AD_AlertRule_UU, String trxName) { - super(ctx, AD_AlertRule_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_AlertRule_UU UUID key + * @param trxName Transaction + */ + public MAlertRule(Properties ctx, String AD_AlertRule_UU, String trxName) { + super(ctx, AD_AlertRule_UU, trxName); + } + /** - * Standatd Constructor + * Standard Constructor * @param ctx context * @param AD_AlertRule_ID id * @param trxName transaction diff --git a/org.adempiere.base/src/org/compiere/model/MAssetAddition.java b/org.adempiere.base/src/org/compiere/model/MAssetAddition.java index c36af295bd..355926f65a 100644 --- a/org.adempiere.base/src/org/compiere/model/MAssetAddition.java +++ b/org.adempiere.base/src/org/compiere/model/MAssetAddition.java @@ -65,23 +65,23 @@ public class MAssetAddition extends X_A_Asset_Addition /** Static Logger */ private static CLogger s_log = CLogger.getCLogger(MAssetAddition.class); - /** - * UUID based Constructor - * @param ctx Context - * @param A_Asset_Addition_UU UUID key - * @param trxName Transaction - */ - public MAssetAddition(Properties ctx, String A_Asset_Addition_UU, String trxName) { - super(ctx, A_Asset_Addition_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param A_Asset_Addition_UU UUID key + * @param trxName Transaction + */ + public MAssetAddition(Properties ctx, String A_Asset_Addition_UU, String trxName) { + super(ctx, A_Asset_Addition_UU, trxName); if (Util.isEmpty(A_Asset_Addition_UU)) setInitialDefaults(); - } + } /** * @param ctx * @param A_Asset_Addition_ID * @param trxName - */ + */ public MAssetAddition (Properties ctx, int A_Asset_Addition_ID, String trxName) { super (ctx, A_Asset_Addition_ID, trxName); @@ -1213,7 +1213,7 @@ public class MAssetAddition extends X_A_Asset_Addition } else { - // Succesfull creation of Asset + // Successful creation of Asset if (cnt == 0) { setA_CreateAsset(true); diff --git a/org.adempiere.base/src/org/compiere/model/MAttributeUse.java b/org.adempiere.base/src/org/compiere/model/MAttributeUse.java index 7f84f70f54..16649eccce 100644 --- a/org.adempiere.base/src/org/compiere/model/MAttributeUse.java +++ b/org.adempiere.base/src/org/compiere/model/MAttributeUse.java @@ -35,16 +35,16 @@ public class MAttributeUse extends X_M_AttributeUse */ private static final long serialVersionUID = -9159120094145438975L; - /** - * UUID based Constructor - * @param ctx Context - * @param M_AttributeUse_UU UUID key - * @param trxName Transaction - */ - public MAttributeUse(Properties ctx, String M_AttributeUse_UU, String trxName) { - super(ctx, M_AttributeUse_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param M_AttributeUse_UU UUID key + * @param trxName Transaction + */ + public MAttributeUse(Properties ctx, String M_AttributeUse_UU, String trxName) { + super(ctx, M_AttributeUse_UU, trxName); + } + /** * @param ctx context * @param ignored ignored @@ -58,7 +58,7 @@ public class MAttributeUse extends X_M_AttributeUse } // MAttributeUse /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction diff --git a/org.adempiere.base/src/org/compiere/model/MCashLine.java b/org.adempiere.base/src/org/compiere/model/MCashLine.java index 10acac13fc..43c30852a3 100644 --- a/org.adempiere.base/src/org/compiere/model/MCashLine.java +++ b/org.adempiere.base/src/org/compiere/model/MCashLine.java @@ -45,18 +45,18 @@ public class MCashLine extends X_C_CashLine */ private static final long serialVersionUID = 5023249596033465923L; - /** - * UUID based Constructor - * @param ctx Context - * @param C_CashLine_UU UUID key - * @param trxName Transaction - */ - public MCashLine(Properties ctx, String C_CashLine_UU, String trxName) { - super(ctx, C_CashLine_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param C_CashLine_UU UUID key + * @param trxName Transaction + */ + public MCashLine(Properties ctx, String C_CashLine_UU, String trxName) { + super(ctx, C_CashLine_UU, trxName); if (Util.isEmpty(C_CashLine_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -81,7 +81,7 @@ public class MCashLine extends X_C_CashLine } /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction @@ -92,7 +92,7 @@ public class MCashLine extends X_C_CashLine } // MCashLine /** - * Parent Cosntructor + * Parent Constructor * @param cash parent */ public MCashLine (MCash cash) diff --git a/org.adempiere.base/src/org/compiere/model/MClient.java b/org.adempiere.base/src/org/compiere/model/MClient.java index 9b2206402f..bac3051127 100644 --- a/org.adempiere.base/src/org/compiere/model/MClient.java +++ b/org.adempiere.base/src/org/compiere/model/MClient.java @@ -1208,7 +1208,7 @@ public class MClient extends X_AD_Client implements ImmutablePOSupport /** * Get SMTP Host - * @return SMTP or loaclhost + * @return SMTP or localhost */ @Override public String getSMTPHost() { diff --git a/org.adempiere.base/src/org/compiere/model/MCost.java b/org.adempiere.base/src/org/compiere/model/MCost.java index ceb35b1400..150ec26b2b 100644 --- a/org.adempiere.base/src/org/compiere/model/MCost.java +++ b/org.adempiere.base/src/org/compiere/model/MCost.java @@ -890,7 +890,7 @@ public class MCost extends X_M_Cost * @param product product * @param M_AttributeSetInstance_ID optional asi * @param as acct schema - * @param AD_Org_ID optonal org + * @param AD_Org_ID optional org * @return average invoice costs or null */ public static BigDecimal calculateAverageInv (MProduct product, int M_AttributeSetInstance_ID, @@ -1457,18 +1457,18 @@ public class MCost extends X_M_Cost /** Logger */ private static CLogger s_log = CLogger.getCLogger (MCost.class); - /** - * UUID based Constructor - * @param ctx Context - * @param M_Cost_UU UUID key - * @param trxName Transaction - */ - public MCost(Properties ctx, String M_Cost_UU, String trxName) { - super(ctx, M_Cost_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param M_Cost_UU UUID key + * @param trxName Transaction + */ + public MCost(Properties ctx, String M_Cost_UU, String trxName) { + super(ctx, M_Cost_UU, trxName); if (Util.isEmpty(M_Cost_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -1656,7 +1656,7 @@ public class MCost extends X_M_Cost * String Representation * @return info */ - @Override + @Override public String toString () { StringBuilder sb = new StringBuilder ("MCost["); diff --git a/org.adempiere.base/src/org/compiere/model/MDepreciation.java b/org.adempiere.base/src/org/compiere/model/MDepreciation.java index c323524f65..9e0e7ef768 100644 --- a/org.adempiere.base/src/org/compiere/model/MDepreciation.java +++ b/org.adempiere.base/src/org/compiere/model/MDepreciation.java @@ -403,7 +403,7 @@ public class MDepreciation extends X_A_Depreciation implements ImmutablePOSuppor /** Linear damping coefficient for one year = 1 / total number of years */ BigDecimal coef_sl = BigDecimal.ONE.divide(new BigDecimal(A_Life_Year), getPrecision() + 2, RoundingMode.DOWN); - /** Degressive damping coefficient for one year = one-year linear depreciation * coeficient K */ + /** Degressive damping coefficient for one year = one-year linear depreciation * coefficient K */ BigDecimal coef_ad1 = coef_sl.multiply(BigDecimal.valueOf(2.0)); //added by @win // logging diff --git a/org.adempiere.base/src/org/compiere/model/MEntityType.java b/org.adempiere.base/src/org/compiere/model/MEntityType.java index eec1a7b3da..ca7c9ed64c 100644 --- a/org.adempiere.base/src/org/compiere/model/MEntityType.java +++ b/org.adempiere.base/src/org/compiere/model/MEntityType.java @@ -28,7 +28,7 @@ import org.idempiere.cache.ImmutablePOSupport; import org.idempiere.cache.ImmutablePOCache; /** - * Enitity Type Model + * Entity Type Model * * @author Jorg Janke * @version $Id: MEntityType.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $ @@ -86,16 +86,16 @@ public class MEntityType extends X_AD_EntityType implements ImmutablePOSupport @SuppressWarnings("unused") private static CLogger s_log = CLogger.getCLogger (MEntityType.class); - /** - * UUID based Constructor - * @param ctx Context - * @param AD_EntityType_UU UUID key - * @param trxName Transaction - */ - public MEntityType(Properties ctx, String AD_EntityType_UU, String trxName) { - super(ctx, AD_EntityType_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_EntityType_UU UUID key + * @param trxName Transaction + */ + public MEntityType(Properties ctx, String AD_EntityType_UU, String trxName) { + super(ctx, AD_EntityType_UU, trxName); + } + /** * Standard Constructor * @param ctx context diff --git a/org.adempiere.base/src/org/compiere/model/MGoal.java b/org.adempiere.base/src/org/compiere/model/MGoal.java index cd13d77e96..2078e4e928 100644 --- a/org.adempiere.base/src/org/compiere/model/MGoal.java +++ b/org.adempiere.base/src/org/compiere/model/MGoal.java @@ -255,18 +255,18 @@ public class MGoal extends X_PA_Goal /** Logger */ private static CLogger s_log = CLogger.getCLogger (MGoal.class); - /** - * UUID based Constructor - * @param ctx Context - * @param PA_Goal_UU UUID key - * @param trxName Transaction - */ - public MGoal(Properties ctx, String PA_Goal_UU, String trxName) { - super(ctx, PA_Goal_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param PA_Goal_UU UUID key + * @param trxName Transaction + */ + public MGoal(Properties ctx, String PA_Goal_UU, String trxName) { + super(ctx, PA_Goal_UU, trxName); if (Util.isEmpty(PA_Goal_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -307,7 +307,7 @@ public class MGoal extends X_PA_Goal /** * @param ctx context * @param Name Name - * @param Description Decsription + * @param Description Description * @param MeasureTarget target * @param trxName trx */ diff --git a/org.adempiere.base/src/org/compiere/model/MIFixedAsset.java b/org.adempiere.base/src/org/compiere/model/MIFixedAsset.java index f1e9e3a2ab..86e18474e6 100644 --- a/org.adempiere.base/src/org/compiere/model/MIFixedAsset.java +++ b/org.adempiere.base/src/org/compiere/model/MIFixedAsset.java @@ -287,7 +287,7 @@ public class MIFixedAsset extends X_I_FixedAsset private int m_A_Asset_Group_ID = 0; /** - * set defauly asset group id + * set default asset group id * @param A_Asset_Group_ID */ public void setDefault_Asset_Group_ID(int A_Asset_Group_ID) { diff --git a/org.adempiere.base/src/org/compiere/model/MInOut.java b/org.adempiere.base/src/org/compiere/model/MInOut.java index fc9bd1b4ef..85a15c1784 100644 --- a/org.adempiere.base/src/org/compiere/model/MInOut.java +++ b/org.adempiere.base/src/org/compiere/model/MInOut.java @@ -2510,7 +2510,7 @@ public class MInOut extends X_M_InOut implements DocAction, IDocsPostProcess counter.setDropShip_User_ID(getDropShip_User_ID()); } - // Refernces (Should not be required + // References (Should not be required) counter.setSalesRep_ID(getSalesRep_ID()); counter.saveEx(get_TrxName()); diff --git a/org.adempiere.base/src/org/compiere/model/MInventoryLineMA.java b/org.adempiere.base/src/org/compiere/model/MInventoryLineMA.java index e111bbb29e..321d4a9d4e 100644 --- a/org.adempiere.base/src/org/compiere/model/MInventoryLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/MInventoryLineMA.java @@ -110,16 +110,16 @@ public class MInventoryLineMA extends X_M_InventoryLineMA /** Logger */ private static CLogger s_log = CLogger.getCLogger (MInventoryLineMA.class); - /** - * UUID based Constructor - * @param ctx Context - * @param M_InventoryLineMA_UU UUID key - * @param trxName Transaction - */ - public MInventoryLineMA(Properties ctx, String M_InventoryLineMA_UU, String trxName) { - super(ctx, M_InventoryLineMA_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param M_InventoryLineMA_UU UUID key + * @param trxName Transaction + */ + public MInventoryLineMA(Properties ctx, String M_InventoryLineMA_UU, String trxName) { + super(ctx, M_InventoryLineMA_UU, trxName); + } + /** * Standard Constructor * @param ctx context @@ -134,7 +134,7 @@ public class MInventoryLineMA extends X_M_InventoryLineMA } // MInventoryLineMA /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName trx diff --git a/org.adempiere.base/src/org/compiere/model/MInvoice.java b/org.adempiere.base/src/org/compiere/model/MInvoice.java index 8972c54c0f..a3c7d34585 100644 --- a/org.adempiere.base/src/org/compiere/model/MInvoice.java +++ b/org.adempiere.base/src/org/compiere/model/MInvoice.java @@ -70,7 +70,7 @@ import org.eevolution.model.MPPProductBOMLine; *

  • FR [ 2520591 ] Support multiples calendar for Org * @see https://sourceforge.net/p/adempiere/feature-requests/631/ * Modifications: Added RMA functionality (Ashley Ramdass) - * Modifications: Generate DocNo^ instead of using a new number whan an invoice is reversed (Diego Ruiz-globalqss) + * Modifications: Generate DocNo^ instead of using a new number when an invoice is reversed (Diego Ruiz-globalqss) */ public class MInvoice extends X_C_Invoice implements DocAction, IDocsPostProcess { @@ -394,18 +394,18 @@ public class MInvoice extends X_C_Invoice implements DocAction, IDocsPostProcess return null; } // get - /** - * UUID based Constructor - * @param ctx Context - * @param C_Invoice_UU UUID key - * @param trxName Transaction - */ - public MInvoice(Properties ctx, String C_Invoice_UU, String trxName) { - super(ctx, C_Invoice_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param C_Invoice_UU UUID key + * @param trxName Transaction + */ + public MInvoice(Properties ctx, String C_Invoice_UU, String trxName) { + super(ctx, C_Invoice_UU, trxName); if (Util.isEmpty(C_Invoice_UU)) setInitialDefaults(); - } - + } + /** * Invoice Constructor * @param ctx context diff --git a/org.adempiere.base/src/org/compiere/model/MInvoiceLine.java b/org.adempiere.base/src/org/compiere/model/MInvoiceLine.java index 7b75a7f626..3bd339d7d2 100644 --- a/org.adempiere.base/src/org/compiere/model/MInvoiceLine.java +++ b/org.adempiere.base/src/org/compiere/model/MInvoiceLine.java @@ -109,18 +109,18 @@ public class MInvoiceLine extends X_C_InvoiceLine /** Tax */ protected MTax m_tax = null; - /** - * UUID based Constructor - * @param ctx Context - * @param C_InvoiceLine_UU UUID key - * @param trxName Transaction - */ - public MInvoiceLine(Properties ctx, String C_InvoiceLine_UU, String trxName) { - super(ctx, C_InvoiceLine_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param C_InvoiceLine_UU UUID key + * @param trxName Transaction + */ + public MInvoiceLine(Properties ctx, String C_InvoiceLine_UU, String trxName) { + super(ctx, C_InvoiceLine_UU, trxName); if (Util.isEmpty(C_InvoiceLine_UU)) setInitialDefaults(); - } - + } + /** * Invoice Line Constructor * @param ctx context @@ -1232,7 +1232,7 @@ public class MInvoiceLine extends X_C_InvoiceLine MInOutLine[] lines = ship.getLines(); for (int i = 0; i < lines.length; i++) { - if (lines[i].isDescription() // decription or no product + if (lines[i].isDescription() // description or no product || lines[i].getM_Product_ID() == 0) continue; if (lc.getM_Product_ID() == 0 // no restriction or product match diff --git a/org.adempiere.base/src/org/compiere/model/MJournal.java b/org.adempiere.base/src/org/compiere/model/MJournal.java index af2c02baf6..f4403a15b5 100644 --- a/org.adempiere.base/src/org/compiere/model/MJournal.java +++ b/org.adempiere.base/src/org/compiere/model/MJournal.java @@ -59,18 +59,18 @@ public class MJournal extends X_GL_Journal implements DocAction */ private static final long serialVersionUID = 4661098755828765138L; - /** - * UUID based Constructor - * @param ctx Context - * @param GL_Journal_UU UUID key - * @param trxName Transaction - */ - public MJournal(Properties ctx, String GL_Journal_UU, String trxName) { - super(ctx, GL_Journal_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param GL_Journal_UU UUID key + * @param trxName Transaction + */ + public MJournal(Properties ctx, String GL_Journal_UU, String trxName) { + super(ctx, GL_Journal_UU, trxName); if (Util.isEmpty(GL_Journal_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -185,7 +185,7 @@ public class MJournal extends X_GL_Journal implements DocAction /** * Set Currency Info - * @param C_Currency_ID currenct + * @param C_Currency_ID currency * @param C_ConversionType_ID type * @param CurrencyRate rate */ diff --git a/org.adempiere.base/src/org/compiere/model/MJournalLine.java b/org.adempiere.base/src/org/compiere/model/MJournalLine.java index 6c0c32e52c..d671f4a8f7 100644 --- a/org.adempiere.base/src/org/compiere/model/MJournalLine.java +++ b/org.adempiere.base/src/org/compiere/model/MJournalLine.java @@ -43,18 +43,18 @@ public class MJournalLine extends X_GL_JournalLine */ private static final long serialVersionUID = 253571209449736797L; - /** - * UUID based Constructor - * @param ctx Context - * @param GL_JournalLine_UU UUID key - * @param trxName Transaction - */ - public MJournalLine(Properties ctx, String GL_JournalLine_UU, String trxName) { - super(ctx, GL_JournalLine_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param GL_JournalLine_UU UUID key + * @param trxName Transaction + */ + public MJournalLine(Properties ctx, String GL_JournalLine_UU, String trxName) { + super(ctx, GL_JournalLine_UU, trxName); if (Util.isEmpty(GL_JournalLine_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -131,7 +131,7 @@ public class MJournalLine extends X_GL_JournalLine /** * Set Currency Info - * @param C_Currency_ID currenct + * @param C_Currency_ID currency * @param C_ConversionType_ID type * @param CurrencyRate rate */ diff --git a/org.adempiere.base/src/org/compiere/model/MMessage.java b/org.adempiere.base/src/org/compiere/model/MMessage.java index 04b07d3c3d..0ad96a4dc6 100644 --- a/org.adempiere.base/src/org/compiere/model/MMessage.java +++ b/org.adempiere.base/src/org/compiere/model/MMessage.java @@ -145,16 +145,16 @@ public class MMessage extends X_AD_Message implements ImmutablePOSupport /** Static Logger */ private static CLogger s_log = CLogger.getCLogger(MMessage.class); - /** - * UUID based Constructor - * @param ctx Context - * @param AD_Message_UU UUID key - * @param trxName Transaction - */ - public MMessage(Properties ctx, String AD_Message_UU, String trxName) { - super(ctx, AD_Message_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_Message_UU UUID key + * @param trxName Transaction + */ + public MMessage(Properties ctx, String AD_Message_UU, String trxName) { + super(ctx, AD_Message_UU, trxName); + } + /** * Standard Constructor * @param ctx context @@ -167,7 +167,7 @@ public class MMessage extends X_AD_Message implements ImmutablePOSupport } // MMessage /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction diff --git a/org.adempiere.base/src/org/compiere/model/MPInstanceLog.java b/org.adempiere.base/src/org/compiere/model/MPInstanceLog.java index 74951c05f9..3d6b9278da 100644 --- a/org.adempiere.base/src/org/compiere/model/MPInstanceLog.java +++ b/org.adempiere.base/src/org/compiere/model/MPInstanceLog.java @@ -413,7 +413,7 @@ public class MPInstanceLog /** * Set AD_PInstance_Log_UU - * @return Sting AD_PInstance_Log_UU + * @return String AD_PInstance_Log_UU */ public String getAD_PInstance_Log_UU() { if(Util.isEmpty(m_AD_PInstance_Log_UU)) diff --git a/org.adempiere.base/src/org/compiere/model/MPaySelectionCheck.java b/org.adempiere.base/src/org/compiere/model/MPaySelectionCheck.java index 28cbf380d1..5e71d5b2b9 100644 --- a/org.adempiere.base/src/org/compiere/model/MPaySelectionCheck.java +++ b/org.adempiere.base/src/org/compiere/model/MPaySelectionCheck.java @@ -160,7 +160,7 @@ public class MPaySelectionCheck extends X_C_PaySelectionCheck psl.saveEx(); } else { // globalqss - CarlosRuiz - fix bug [ 1803054 ] Empty Remittance lines on payments - // look for existance of C_PaymentAllocate records + // look for existence of C_PaymentAllocate records // Allocate to multiple Payments based on entry MPaymentAllocate[] pAllocs = MPaymentAllocate.get(payment); if (pAllocs.length != 0) { @@ -511,18 +511,18 @@ public class MPaySelectionCheck extends X_C_PaySelectionCheck /** Logger */ static private CLogger s_log = CLogger.getCLogger (MPaySelectionCheck.class); - /** - * UUID based Constructor - * @param ctx Context - * @param C_PaySelectionCheck_UU UUID key - * @param trxName Transaction - */ - public MPaySelectionCheck(Properties ctx, String C_PaySelectionCheck_UU, String trxName) { - super(ctx, C_PaySelectionCheck_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param C_PaySelectionCheck_UU UUID key + * @param trxName Transaction + */ + public MPaySelectionCheck(Properties ctx, String C_PaySelectionCheck_UU, String trxName) { + super(ctx, C_PaySelectionCheck_UU, trxName); if (Util.isEmpty(C_PaySelectionCheck_UU)) setInitialDefaults(); - } - + } + /** * @param ctx context * @param C_PaySelectionCheck_ID C_PaySelectionCheck_ID diff --git a/org.adempiere.base/src/org/compiere/model/MPaySelectionLine.java b/org.adempiere.base/src/org/compiere/model/MPaySelectionLine.java index b43d5f94ff..7ec9f17324 100644 --- a/org.adempiere.base/src/org/compiere/model/MPaySelectionLine.java +++ b/org.adempiere.base/src/org/compiere/model/MPaySelectionLine.java @@ -188,7 +188,7 @@ public class MPaySelectionLine extends X_C_PaySelectionLine /** * After Delete * @param success success - * @return sucess + * @return success */ @Override protected boolean afterDelete (boolean success) diff --git a/org.adempiere.base/src/org/compiere/model/MPaymentAllocate.java b/org.adempiere.base/src/org/compiere/model/MPaymentAllocate.java index f07df3d803..b391ce3c3b 100644 --- a/org.adempiere.base/src/org/compiere/model/MPaymentAllocate.java +++ b/org.adempiere.base/src/org/compiere/model/MPaymentAllocate.java @@ -53,18 +53,18 @@ public class MPaymentAllocate extends X_C_PaymentAllocate return list.toArray(new MPaymentAllocate[list.size()]); } // get - /** - * UUID based Constructor - * @param ctx Context - * @param C_PaymentAllocate_UU UUID key - * @param trxName Transaction - */ - public MPaymentAllocate(Properties ctx, String C_PaymentAllocate_UU, String trxName) { - super(ctx, C_PaymentAllocate_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param C_PaymentAllocate_UU UUID key + * @param trxName Transaction + */ + public MPaymentAllocate(Properties ctx, String C_PaymentAllocate_UU, String trxName) { + super(ctx, C_PaymentAllocate_UU, trxName); if (Util.isEmpty(C_PaymentAllocate_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -93,7 +93,7 @@ public class MPaymentAllocate extends X_C_PaymentAllocate private MInvoice m_invoice = null; /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName trx diff --git a/org.adempiere.base/src/org/compiere/model/MProductCategoryAcct.java b/org.adempiere.base/src/org/compiere/model/MProductCategoryAcct.java index 7ca492b56a..63497f8d39 100644 --- a/org.adempiere.base/src/org/compiere/model/MProductCategoryAcct.java +++ b/org.adempiere.base/src/org/compiere/model/MProductCategoryAcct.java @@ -92,16 +92,16 @@ public class MProductCategoryAcct extends X_M_Product_Category_Acct implements I return acct; } // get - /** - * UUID based Constructor - * @param ctx Context - * @param M_Product_Category_Acct_UU UUID key - * @param trxName Transaction - */ - public MProductCategoryAcct(Properties ctx, String M_Product_Category_Acct_UU, String trxName) { - super(ctx, M_Product_Category_Acct_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param M_Product_Category_Acct_UU UUID key + * @param trxName Transaction + */ + public MProductCategoryAcct(Properties ctx, String M_Product_Category_Acct_UU, String trxName) { + super(ctx, M_Product_Category_Acct_UU, trxName); + } + /** * Standard Constructor * @param ctx context @@ -116,7 +116,7 @@ public class MProductCategoryAcct extends X_M_Product_Category_Acct implements I } // MProductCategoryAcct /** - * Load Cosntructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName trx diff --git a/org.adempiere.base/src/org/compiere/model/MRefList.java b/org.adempiere.base/src/org/compiere/model/MRefList.java index 603dd5a51c..6f71095eaa 100644 --- a/org.adempiere.base/src/org/compiere/model/MRefList.java +++ b/org.adempiere.base/src/org/compiere/model/MRefList.java @@ -354,7 +354,7 @@ public class MRefList extends X_AD_Ref_List implements ImmutablePOSupport } /** - * Load Contructor + * Load Constructor * @param ctx context * @param rs result * @param trxName transaction diff --git a/org.adempiere.base/src/org/compiere/model/MRegistrationAttribute.java b/org.adempiere.base/src/org/compiere/model/MRegistrationAttribute.java index 41499021ca..76f3398c98 100644 --- a/org.adempiere.base/src/org/compiere/model/MRegistrationAttribute.java +++ b/org.adempiere.base/src/org/compiere/model/MRegistrationAttribute.java @@ -45,7 +45,7 @@ public class MRegistrationAttribute extends X_A_RegistrationAttribute implements /** * Get All Asset Registration Attributes (not cached). - * Refreshes Cache for direct addess + * Refreshes Cache for direct address * @param ctx context * @return array of Registration Attributes */ @@ -154,16 +154,16 @@ public class MRegistrationAttribute extends X_A_RegistrationAttribute implements private static ImmutableIntPOCache s_cache = new ImmutableIntPOCache(Table_Name, 20); - /** - * UUID based Constructor - * @param ctx Context - * @param A_RegistrationAttribute_UU UUID key - * @param trxName Transaction - */ - public MRegistrationAttribute(Properties ctx, String A_RegistrationAttribute_UU, String trxName) { - super(ctx, A_RegistrationAttribute_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param A_RegistrationAttribute_UU UUID key + * @param trxName Transaction + */ + public MRegistrationAttribute(Properties ctx, String A_RegistrationAttribute_UU, String trxName) { + super(ctx, A_RegistrationAttribute_UU, trxName); + } + /************************************************************************** * Standard Constructor * @param ctx context diff --git a/org.adempiere.base/src/org/compiere/model/MReplication.java b/org.adempiere.base/src/org/compiere/model/MReplication.java index 0df35cb78e..0cb6aded7c 100644 --- a/org.adempiere.base/src/org/compiere/model/MReplication.java +++ b/org.adempiere.base/src/org/compiere/model/MReplication.java @@ -29,20 +29,20 @@ import java.util.Properties; public class MReplication extends X_AD_Replication { /** - * geneated serial id + * generated serial id */ private static final long serialVersionUID = -562186299848949607L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_Replication_UU UUID key - * @param trxName Transaction - */ - public MReplication(Properties ctx, String AD_Replication_UU, String trxName) { - super(ctx, AD_Replication_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_Replication_UU UUID key + * @param trxName Transaction + */ + public MReplication(Properties ctx, String AD_Replication_UU, String trxName) { + super(ctx, AD_Replication_UU, trxName); + } + /** * @param ctx context * @param AD_Replication_ID id diff --git a/org.adempiere.base/src/org/compiere/model/MRole.java b/org.adempiere.base/src/org/compiere/model/MRole.java index c48f42d3de..f234226d26 100644 --- a/org.adempiere.base/src/org/compiere/model/MRole.java +++ b/org.adempiere.base/src/org/compiere/model/MRole.java @@ -2214,7 +2214,7 @@ public final class MRole extends X_AD_Role implements ImmutablePOSupport if (includes.size() == 0 && excludes.size() == 0) return ""; if (includes.size() != 0 && excludes.size() != 0) - log.warning("Mixing Include and Excluse rules - Will not return values"); + log.warning("Mixing Include and Exclude rules - Will not return values"); StringBuilder where = new StringBuilder(" AND "); if (includes.size() == 1) @@ -2269,7 +2269,7 @@ public final class MRole extends X_AD_Role implements ImmutablePOSupport if (c == '.') { StringBuilder sb = new StringBuilder(); - while (c != ' ' && c != ',' && c != '(') // delimeter + while (c != ' ' && c != ',' && c != '(') // delimiter { sb.insert(0, c); c = mainSql.charAt(--offset); diff --git a/org.adempiere.base/src/org/compiere/model/MRoleIncluded.java b/org.adempiere.base/src/org/compiere/model/MRoleIncluded.java index 655104eacf..bcfcec44bd 100644 --- a/org.adempiere.base/src/org/compiere/model/MRoleIncluded.java +++ b/org.adempiere.base/src/org/compiere/model/MRoleIncluded.java @@ -43,21 +43,21 @@ public class MRoleIncluded extends X_AD_Role_Included */ private static final long serialVersionUID = -3284165639631581484L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_Role_Included_UU UUID key - * @param trxName Transaction - */ - public MRoleIncluded(Properties ctx, String AD_Role_Included_UU, String trxName) { - super(ctx, AD_Role_Included_UU, trxName); - } + /** + * UUID based Constructor + * @param ctx Context + * @param AD_Role_Included_UU UUID key + * @param trxName Transaction + */ + public MRoleIncluded(Properties ctx, String AD_Role_Included_UU, String trxName) { + super(ctx, AD_Role_Included_UU, trxName); + } /** * @param ctx * @param AD_Role_Included_ID * @param trxName - */ + */ public MRoleIncluded(Properties ctx, int AD_Role_Included_ID, String trxName) { super(ctx, AD_Role_Included_ID, trxName); @@ -119,7 +119,7 @@ public class MRoleIncluded extends X_AD_Role_Included * @param trxName transaction name * @return true if loop detected. If you specified not null trace, you will have in that list the IDs from the loop */ - // TODO: refactor this method and move into org.compiere.util.DB class because it's general and usefull of others too + // TODO: refactor this method and move into org.compiere.util.DB class because it's general and useful of others too private static boolean hasLoop(String tableName, String idColumnName, String parentIdColumnName, int nodeId, List trace, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/MSLACriteria.java b/org.adempiere.base/src/org/compiere/model/MSLACriteria.java index 385afe12e0..8d5fdb82ba 100644 --- a/org.adempiere.base/src/org/compiere/model/MSLACriteria.java +++ b/org.adempiere.base/src/org/compiere/model/MSLACriteria.java @@ -91,16 +91,16 @@ public class MSLACriteria extends X_PA_SLA_Criteria implements ImmutablePOSuppor private static ImmutableIntPOCache s_cache = new ImmutableIntPOCache(Table_Name, 20); - /** - * UUID based Constructor - * @param ctx Context - * @param PA_SLA_Criteria_UU UUID key - * @param trxName Transaction - */ - public MSLACriteria(Properties ctx, String PA_SLA_Criteria_UU, String trxName) { - super(ctx, PA_SLA_Criteria_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param PA_SLA_Criteria_UU UUID key + * @param trxName Transaction + */ + public MSLACriteria(Properties ctx, String PA_SLA_Criteria_UU, String trxName) { + super(ctx, PA_SLA_Criteria_UU, trxName); + } + /** * Standard Constructor * @param ctx context @@ -191,7 +191,7 @@ public class MSLACriteria extends X_PA_SLA_Criteria implements ImmutablePOSuppor /** * Create New Instance of SLA Criteria - * @return instanciated class + * @return instantiated class * @throws Exception */ public SLACriteria newInstance() throws Exception diff --git a/org.adempiere.base/src/org/compiere/model/MSession.java b/org.adempiere.base/src/org/compiere/model/MSession.java index dffbd15b05..ad94a06dd4 100644 --- a/org.adempiere.base/src/org/compiere/model/MSession.java +++ b/org.adempiere.base/src/org/compiere/model/MSession.java @@ -171,7 +171,7 @@ public class MSession extends X_AD_Session implements ImmutablePOSupport } /** - * Load Costructor + * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction diff --git a/org.adempiere.base/src/org/compiere/model/MSystem.java b/org.adempiere.base/src/org/compiere/model/MSystem.java index be5bd63e8a..77a9a9d2a0 100644 --- a/org.adempiere.base/src/org/compiere/model/MSystem.java +++ b/org.adempiere.base/src/org/compiere/model/MSystem.java @@ -85,16 +85,16 @@ public class MSystem extends X_AD_System /** System - cached */ private static CCache s_system = new CCache(Table_Name, 1, -1); - /** - * UUID based Constructor - * @param ctx Context - * @param AD_System_UU UUID key - * @param trxName Transaction - */ - public MSystem(Properties ctx, String AD_System_UU, String trxName) { - super(ctx, AD_System_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_System_UU UUID key + * @param trxName Transaction + */ + public MSystem(Properties ctx, String AD_System_UU, String trxName) { + super(ctx, AD_System_UU, trxName); + } + /** * Default Constructor * @param ctx context @@ -155,7 +155,7 @@ public class MSystem extends X_AD_System } /** - * Is LDAP Authentification defined + * Is LDAP Authentication defined * @return true if ldap defined */ public boolean isLDAP() @@ -169,7 +169,7 @@ public class MSystem extends X_AD_System } // isLDAP /** - * LDAP Authentification. Assumes that LDAP is defined. + * LDAP Authentication. Assumes that LDAP is defined. * @param userName user name * @param password password * @return true if ldap authenticated diff --git a/org.adempiere.base/src/org/compiere/model/MTask.java b/org.adempiere.base/src/org/compiere/model/MTask.java index 2279037fc7..76f54e94ec 100644 --- a/org.adempiere.base/src/org/compiere/model/MTask.java +++ b/org.adempiere.base/src/org/compiere/model/MTask.java @@ -37,16 +37,16 @@ public class MTask extends X_AD_Task */ private static final long serialVersionUID = 5286481246615520755L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_Task_UU UUID key - * @param trxName Transaction - */ - public MTask(Properties ctx, String AD_Task_UU, String trxName) { - super(ctx, AD_Task_UU, trxName); - } - + /** + * UUID based Constructor + * @param ctx Context + * @param AD_Task_UU UUID key + * @param trxName Transaction + */ + public MTask(Properties ctx, String AD_Task_UU, String trxName) { + super(ctx, AD_Task_UU, trxName); + } + /** * Standard Constructor * @param ctx context @@ -59,7 +59,7 @@ public class MTask extends X_AD_Task } // MTask /** - * Load Cosntructor + * Load Constructor * @param ctx ctx * @param rs result set * @param trxName trx diff --git a/org.adempiere.base/src/org/compiere/model/MUser.java b/org.adempiere.base/src/org/compiere/model/MUser.java index ae2b21b0ac..8ae3d9fbc8 100644 --- a/org.adempiere.base/src/org/compiere/model/MUser.java +++ b/org.adempiere.base/src/org/compiere/model/MUser.java @@ -793,7 +793,7 @@ public class MUser extends X_AD_User implements ImmutablePOSupport ArrayList list = new ArrayList(); // 2007-06-08, matthiasO. - // Extension of sql query so that not only roles with org acces for this user + // Extension of sql query so that not only roles with org access for this user // are found but also roles which delegate org access to the user level where // this user has access to the org in question String sql = "SELECT * FROM AD_Role r " diff --git a/org.adempiere.base/src/org/compiere/model/ModelValidationEngine.java b/org.adempiere.base/src/org/compiere/model/ModelValidationEngine.java index 159ac33dbe..8489e028b2 100644 --- a/org.adempiere.base/src/org/compiere/model/ModelValidationEngine.java +++ b/org.adempiere.base/src/org/compiere/model/ModelValidationEngine.java @@ -652,7 +652,7 @@ public class ModelValidationEngine { //log the stack trace log.log(Level.SEVERE, e.getLocalizedMessage(), e); - // Exeptions are errors and should stop the document processing - teo_sarca [ 1679692 ] + // Exceptions are errors and should stop the document processing - teo_sarca [ 1679692 ] String error = e.getLocalizedMessage(); if (error == null) error = e.toString(); @@ -817,7 +817,7 @@ public class ModelValidationEngine { //log the stack trace log.log(Level.SEVERE, e.getLocalizedMessage(), e); - // Exeptions are errors and should stop the document processing - teo_sarca [ 1679692 ] + // Exceptions are errors and should stop the document processing - teo_sarca [ 1679692 ] String error = e.getLocalizedMessage(); if (error == null) error = e.toString(); diff --git a/org.adempiere.base/src/org/compiere/model/Query.java b/org.adempiere.base/src/org/compiere/model/Query.java index e83aa69ce4..3c7c625b72 100644 --- a/org.adempiere.base/src/org/compiere/model/Query.java +++ b/org.adempiere.base/src/org/compiere/model/Query.java @@ -380,7 +380,7 @@ public class Query /** * Return first PO that match query criteria. - * If there are more records that match criteria an exception will be throwed + * If there are more records that match criteria an exception will be thrown * @return first PO * @throws DBException * @see {@link #first()} diff --git a/org.adempiere.base/src/org/compiere/model/Scriptlet.java b/org.adempiere.base/src/org/compiere/model/Scriptlet.java index 47a8d3f49c..12a5f5fd40 100644 --- a/org.adempiere.base/src/org/compiere/model/Scriptlet.java +++ b/org.adempiere.base/src/org/compiere/model/Scriptlet.java @@ -429,7 +429,7 @@ public class Scriptlet /** * String Representation incl. Result - * @return Scipt + * @return Script */ public String toString() { diff --git a/org.adempiere.base/src/org/compiere/model/SetGetUtil.java b/org.adempiere.base/src/org/compiere/model/SetGetUtil.java index c53110eb9d..5c91c07f8b 100644 --- a/org.adempiere.base/src/org/compiere/model/SetGetUtil.java +++ b/org.adempiere.base/src/org/compiere/model/SetGetUtil.java @@ -136,7 +136,7 @@ public class SetGetUtil boolean ok = false; obj = rs.getObject(columnName); // - // Date Columns are retuned as Date -> convert to java.sql.Timestamp + // Date Columns are returned as Date -> convert to java.sql.Timestamp if (obj instanceof java.sql.Date) { obj = new java.sql.Timestamp(((java.sql.Date)obj).getTime()); diff --git a/org.adempiere.base/src/org/compiere/model/Tax.java b/org.adempiere.base/src/org/compiere/model/Tax.java index d5b7b5f947..77127e2d87 100644 --- a/org.adempiere.base/src/org/compiere/model/Tax.java +++ b/org.adempiere.base/src/org/compiere/model/Tax.java @@ -312,7 +312,7 @@ public class Tax rs = null; pstmt = null; } - // Reverese for PO + // Reverse for PO if (!IsSOTrx) { int temp = billFromC_Location_ID; diff --git a/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java b/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java index 878d269111..2236a77ece 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java @@ -257,7 +257,7 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent /** CashBook = C */ public static final String CASHBOOKTRANSFERTYPE_CashBook = "C"; /** Set Cash Book Transfer Type. - @param CashBookTransferType Where the money in the cash book should be transfered to. Either a Bank Account or another Cash Book + @param CashBookTransferType Where the money in the cash book should be transferred to. Either a Bank Account or another Cash Book */ public void setCashBookTransferType (String CashBookTransferType) { @@ -266,7 +266,7 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent } /** Get Cash Book Transfer Type. - @return Where the money in the cash book should be transfered to. Either a Bank Account or another Cash Book + @return Where the money in the cash book should be transferred to. Either a Bank Account or another Cash Book */ public String getCashBookTransferType() { diff --git a/org.adempiere.base/src/org/compiere/print/CPaper.java b/org.adempiere.base/src/org/compiere/print/CPaper.java index 03f1344c12..e993da8a1a 100644 --- a/org.adempiere.base/src/org/compiere/print/CPaper.java +++ b/org.adempiere.base/src/org/compiere/print/CPaper.java @@ -306,7 +306,7 @@ public class CPaper extends Paper { area = (MediaPrintableArea)atts[i]; } - else // unhandeled + else // unhandled System.out.println(atts[i].getName() + " = " + atts[i] + " - " + atts[i].getCategory()); } // diff --git a/org.adempiere.base/src/org/compiere/print/DataEngine.java b/org.adempiere.base/src/org/compiere/print/DataEngine.java index f03838866d..dcfe630dd4 100644 --- a/org.adempiere.base/src/org/compiere/print/DataEngine.java +++ b/org.adempiere.base/src/org/compiere/print/DataEngine.java @@ -57,7 +57,7 @@ import bsh.Interpreter; /** * Data Engine. - * Creates SQL and laods data into PrintData (including totals/etc.) + * Creates SQL and loads data into PrintData (including totals/etc.) * * @author Jorg Janke * @version $Id: DataEngine.java,v 1.3 2006/07/30 00:53:02 jjanke Exp $ @@ -696,8 +696,8 @@ public class DataEngine if (columns.size() == 0) { - log.log(Level.SEVERE, "No Colums - Delete Report Format " + reportName + " and start again"); - if (log.isLoggable(Level.FINEST)) log.finest("No Colums - SQL=" + sql + " - ID=" + format.get_ID()); + log.log(Level.SEVERE, "No Columns - Delete Report Format " + reportName + " and start again"); + if (log.isLoggable(Level.FINEST)) log.finest("No Columns - SQL=" + sql + " - ID=" + format.get_ID()); return null; } @@ -1192,7 +1192,7 @@ public class DataEngine // Check last Group Change if (m_group.getGroupColumnCount() > 1) // one is TOTAL { - for (int i = pd.getColumnInfo().length-1; i >= 0; i--) // backwards (leaset group first) + for (int i = pd.getColumnInfo().length-1; i >= 0; i--) // backwards (last group first) { PrintDataColumn group_pdc = pd.getColumnInfo()[i]; if (!m_group.isGroupColumn(group_pdc.getAD_PrintFormatItem_ID())) diff --git a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java index 126eb0fad5..1c30f1edb6 100644 --- a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java +++ b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java @@ -63,21 +63,21 @@ public class MPrintFormat extends X_AD_PrintFormat implements ImmutablePOSupport */ private static final long serialVersionUID = 7542581302442072662L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_PrintFormat_UU UUID key - * @param trxName Transaction - */ - public MPrintFormat(Properties ctx, String AD_PrintFormat_UU, String trxName) { - super(ctx, AD_PrintFormat_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param AD_PrintFormat_UU UUID key + * @param trxName Transaction + */ + public MPrintFormat(Properties ctx, String AD_PrintFormat_UU, String trxName) { + super(ctx, AD_PrintFormat_UU, trxName); // Language=[Deutsch,Locale=de_DE,AD_Language=en_US,DatePattern=DD.MM.YYYY,DecimalPoint=false] m_language = Env.getLanguage(ctx); if (Util.isEmpty(AD_PrintFormat_UU)) setInitialDefaults(); m_items = getItems(); - } - + } + /** * Public Constructor. * Use static get methods @@ -509,7 +509,7 @@ public class MPrintFormat extends X_AD_PrintFormat implements ImmutablePOSupport } // getTableFormat /** - * Sting Representation + * String Representation * @return info */ public String toString() diff --git a/org.adempiere.base/src/org/compiere/print/MPrintTableFormat.java b/org.adempiere.base/src/org/compiere/print/MPrintTableFormat.java index 066a58cae2..0c78787d2b 100644 --- a/org.adempiere.base/src/org/compiere/print/MPrintTableFormat.java +++ b/org.adempiere.base/src/org/compiere/print/MPrintTableFormat.java @@ -56,18 +56,18 @@ public class MPrintTableFormat extends X_AD_PrintTableFormat implements Immutabl */ private static final long serialVersionUID = -1608017405401341288L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_PrintTableFormat_UU UUID key - * @param trxName Transaction - */ - public MPrintTableFormat(Properties ctx, String AD_PrintTableFormat_UU, String trxName) { - super(ctx, AD_PrintTableFormat_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param AD_PrintTableFormat_UU UUID key + * @param trxName Transaction + */ + public MPrintTableFormat(Properties ctx, String AD_PrintTableFormat_UU, String trxName) { + super(ctx, AD_PrintTableFormat_UU, trxName); if (Util.isEmpty(AD_PrintTableFormat_UU)) setInitialDefaults(); - } - + } + /** * Standard Constructor * @param ctx context @@ -201,8 +201,8 @@ public class MPrintTableFormat extends X_AD_PrintTableFormat implements Immutabl } // setStandard_Font /** - * Get Stndard Font - * @return stndard font + * Get Standard Font + * @return standard font */ public Font getStandard_Font() { @@ -473,7 +473,7 @@ public class MPrintTableFormat extends X_AD_PrintTableFormat implements Immutabl } // getHLine_Color /** - * Get Verical Line Color. + * Get Vertical Line Color. * (one db attribute for line color) * @return color or gray light */ diff --git a/org.adempiere.base/src/org/compiere/print/PrintData.java b/org.adempiere.base/src/org/compiere/print/PrintData.java index a766c9cc33..cabe6d5d4d 100644 --- a/org.adempiere.base/src/org/compiere/print/PrintData.java +++ b/org.adempiere.base/src/org/compiere/print/PrintData.java @@ -45,7 +45,7 @@ import org.w3c.dom.Element; /** * Print Data Structure. * Created by DataEngine - * A Structure has rows, wich contain elements. + * A Structure has rows, which contain elements. * Elements can be end nodes (PrintDataElements) or data structures (PrintData). * The row data is sparse - i.e. null if not existing. * A Structure has optional meta info about content (PrintDataColumn). diff --git a/org.adempiere.base/src/org/compiere/print/PrintUtil.java b/org.adempiere.base/src/org/compiere/print/PrintUtil.java index e958647d04..de8480dcb2 100644 --- a/org.adempiere.base/src/org/compiere/print/PrintUtil.java +++ b/org.adempiere.base/src/org/compiere/print/PrintUtil.java @@ -223,7 +223,7 @@ public class PrintUtil /** * Print Async * @param pageable pageable - * @param prats print attribure set + * @param prats print attribute set */ static public void print (Pageable pageable, PrintRequestAttributeSet prats) { @@ -235,7 +235,7 @@ public class PrintUtil /** * Print * @param job printer job - * @param prats print attribure set + * @param prats print attribute set * @param withDialog if true shows Dialog * @param waitForIt if false print async */ diff --git a/org.adempiere.base/src/org/compiere/print/ReportEngine.java b/org.adempiere.base/src/org/compiere/print/ReportEngine.java index 3b5e5cb01a..6a814efa68 100644 --- a/org.adempiere.base/src/org/compiere/print/ReportEngine.java +++ b/org.adempiere.base/src/org/compiere/print/ReportEngine.java @@ -618,7 +618,7 @@ queued-job-count = 0 (class javax.print.attribute.standard.QueuedJobCount) * Create HTML File * @param file file * @param onlyTable if false create complete HTML document - * @param language optional language - if null the default language is used to format nubers/dates + * @param language optional language - if null the default language is used to format numbers/dates * @return true if success */ public boolean createHTML (File file, boolean onlyTable, Language language) @@ -630,7 +630,7 @@ queued-job-count = 0 (class javax.print.attribute.standard.QueuedJobCount) * Create HTML File * @param file file * @param onlyTable if false create complete HTML document - * @param language optional language - if null the default language is used to format nubers/dates + * @param language optional language - if null the default language is used to format numbers/dates * @param extension optional extension for html output * @return true if success */ @@ -660,7 +660,7 @@ queued-job-count = 0 (class javax.print.attribute.standard.QueuedJobCount) * Write HTML to writer * @param writer writer * @param onlyTable if false create complete HTML document - * @param language optional language - if null nubers/dates are not formatted + * @param language optional language - if null numbers/dates are not formatted * @return true if success */ public boolean createHTML (Writer writer, boolean onlyTable, Language language) diff --git a/org.adempiere.base/src/org/compiere/print/layout/Dimension2DImpl.java b/org.adempiere.base/src/org/compiere/print/layout/Dimension2DImpl.java index d53c8a5945..a7d3ed2198 100644 --- a/org.adempiere.base/src/org/compiere/print/layout/Dimension2DImpl.java +++ b/org.adempiere.base/src/org/compiere/print/layout/Dimension2DImpl.java @@ -21,7 +21,7 @@ import java.awt.geom.Dimension2D; import java.io.Serializable; /** - * 2D Dimesnion Implementation + * 2D Dimension Implementation * * @author Jorg Janke * @version $Id: Dimension2DImpl.java,v 1.3 2006/07/30 00:53:02 jjanke Exp $ diff --git a/org.adempiere.base/src/org/compiere/print/layout/HTMLElement.java b/org.adempiere.base/src/org/compiere/print/layout/HTMLElement.java index deac6c0cb1..a3d039abb7 100644 --- a/org.adempiere.base/src/org/compiere/print/layout/HTMLElement.java +++ b/org.adempiere.base/src/org/compiere/print/layout/HTMLElement.java @@ -27,7 +27,7 @@ import java.util.regex.Pattern; * HTML Form Print ELement. * Restrictions: * - Label is not printed - * - Alighnment is ignored + * - Alignment is ignored * * @author Jorg Janke * @version $Id: HTMLElement.java,v 1.2 2006/07/30 00:53:02 jjanke Exp $ diff --git a/org.adempiere.base/src/org/compiere/print/layout/LayoutEngine.java b/org.adempiere.base/src/org/compiere/print/layout/LayoutEngine.java index 914f19b6ec..6a98117141 100644 --- a/org.adempiere.base/src/org/compiere/print/layout/LayoutEngine.java +++ b/org.adempiere.base/src/org/compiere/print/layout/LayoutEngine.java @@ -1008,7 +1008,7 @@ public class LayoutEngine implements Pageable, Printable, Doc if (row > 0 && m_format.isBreakPagePerRecord()) newPage(true, false); // break page per record when the report is a form - boolean somethingPrinted = true; // prevent NL of nothing printed and supress null + boolean somethingPrinted = true; // prevent NL of nothing printed and suppress null // for every item for (int i = 0; i < m_format.getItemCount(); i++) { @@ -1441,7 +1441,7 @@ public class LayoutEngine implements Pageable, Printable, Doc // Get Color/ Font Color color = getColor(); // default if (ID != null && !isForm) - ; // link color/underline handeled in PrintElement classes + ; // link color/underline handled in PrintElement classes else if (item.getAD_PrintColor_ID() != 0 && m_printColor.get_ID() != item.getAD_PrintColor_ID()) { MPrintColor c = MPrintColor.get (getCtx(), item.getAD_PrintColor_ID()); diff --git a/org.adempiere.base/src/org/compiere/print/layout/StringElement.java b/org.adempiere.base/src/org/compiere/print/layout/StringElement.java index 116255d70a..76e24cfd60 100644 --- a/org.adempiere.base/src/org/compiere/print/layout/StringElement.java +++ b/org.adempiere.base/src/org/compiere/print/layout/StringElement.java @@ -538,7 +538,7 @@ public class StringElement extends PrintElement float lineHeight = layout.getAscent() + layout.getDescent() + layout.getLeading(); if (p_maxHeight == -1f && i == 0) // one line only p_maxHeight = lineHeight; - // If we have hight left over + // If we have height left over if (p_maxHeight == 0f || (height + lineHeight) <= p_maxHeight) { yPen = (float)location.y + height + layout.getAscent(); diff --git a/org.adempiere.base/src/org/compiere/print/layout/TableElement.java b/org.adempiere.base/src/org/compiere/print/layout/TableElement.java index 0f98e4193d..361d62ac2e 100644 --- a/org.adempiere.base/src/org/compiere/print/layout/TableElement.java +++ b/org.adempiere.base/src/org/compiere/print/layout/TableElement.java @@ -93,7 +93,7 @@ public class TableElement extends PrintElement * i.e. Point (-1, -1) is the default for the table * * @param columnHeader array with column headers (Key=ColumnName) - * @param columnMaxWidth array with column max width - 0=no restrictions - negative=supress if null + * @param columnMaxWidth array with column max width - 0=no restrictions - negative=suppress if null * @param columnMaxHeight array with row max height for a column - 0=no restrictions; -1=one row only * @param columnJustification field justification for column * @@ -109,7 +109,7 @@ public class TableElement extends PrintElement * @param firstPage bounds on first page * @param nextPages bounds on following pages * @param repeatedColumns repeat first x columns on - X Axis follow pages - * @param additionalLines map of old colum to below printed column + * @param additionalLines map of old column to below printed column * * @param rowColFont HashMap with Point as key with Font overwrite * @param rowColColor HashMap with Point as key with foreground Color overwrite @@ -1722,7 +1722,7 @@ public class TableElement extends PrintElement } else { - // next line is a funcion column -> underline this + // next line is a function column -> underline this boolean nextIsFunction = m_functionRows.contains(Integer.valueOf(row+1)); if (nextIsFunction && m_functionRows.contains(Integer.valueOf(row))) nextIsFunction = false; // this is a function line too diff --git a/org.adempiere.base/src/org/compiere/process/ProcessInfoLog.java b/org.adempiere.base/src/org/compiere/process/ProcessInfoLog.java index 3fabcafbe4..28bf292523 100644 --- a/org.adempiere.base/src/org/compiere/process/ProcessInfoLog.java +++ b/org.adempiere.base/src/org/compiere/process/ProcessInfoLog.java @@ -314,7 +314,7 @@ public class ProcessInfoLog implements Serializable /** * Set AD_PInstance_Log_UU - * @return Sting AD_PInstance_Log_UU + * @return String AD_PInstance_Log_UU */ public String getAD_PInstance_Log_UU() { return m_AD_PInstance_Log_UU; diff --git a/org.adempiere.base/src/org/compiere/process/ServerProcessCtl.java b/org.adempiere.base/src/org/compiere/process/ServerProcessCtl.java index 22b927171f..7106492551 100644 --- a/org.adempiere.base/src/org/compiere/process/ServerProcessCtl.java +++ b/org.adempiere.base/src/org/compiere/process/ServerProcessCtl.java @@ -301,7 +301,7 @@ public class ServerProcessCtl implements Runnable { /************************************************************************** * Start Java Process Class. - * instanciate the class implementing the interface ProcessCall. + * instantiate the class implementing the interface ProcessCall. * The class can be a Server/Client class (when in Package * org adempiere.process or org.compiere.model) or a client only class * (e.g. in org.compiere.report) diff --git a/org.adempiere.base/src/org/compiere/report/MReportLine.java b/org.adempiere.base/src/org/compiere/report/MReportLine.java index 00a71e4fc7..10b3800985 100644 --- a/org.adempiere.base/src/org/compiere/report/MReportLine.java +++ b/org.adempiere.base/src/org/compiere/report/MReportLine.java @@ -47,20 +47,20 @@ public class MReportLine extends X_PA_ReportLine private BasicStroke overline_Stroke; private Stroke underline_Stroke; - /** - * UUID based Constructor - * @param ctx Context - * @param PA_ReportLine_UU UUID key - * @param trxName Transaction - */ - public MReportLine(Properties ctx, String PA_ReportLine_UU, String trxName) { - super(ctx, PA_ReportLine_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param PA_ReportLine_UU UUID key + * @param trxName Transaction + */ + public MReportLine(Properties ctx, String PA_ReportLine_UU, String trxName) { + super(ctx, PA_ReportLine_UU, trxName); if (Util.isEmpty(PA_ReportLine_UU)) setInitialDefaults(); else loadSources(); - } - + } + /** * Constructor * @param ctx context @@ -97,7 +97,7 @@ public class MReportLine extends X_PA_ReportLine loadSources(); } // MReportLine - /** Containt Sources */ + /** Contained Sources */ private MReportSource[] m_sources = null; /** Cache result */ private String m_whereClause = null; diff --git a/org.adempiere.base/src/org/compiere/report/core/RModel.java b/org.adempiere.base/src/org/compiere/report/core/RModel.java index 31ceb9834c..02761a9975 100644 --- a/org.adempiere.base/src/org/compiere/report/core/RModel.java +++ b/org.adempiere.base/src/org/compiere/report/core/RModel.java @@ -269,7 +269,7 @@ public class RModel implements Serializable // TableModel interface /** - * Return Total mumber of rows + * Return Total number of rows * @return row count */ public int getRowCount() diff --git a/org.adempiere.base/src/org/compiere/report/core/RModelData.java b/org.adempiere.base/src/org/compiere/report/core/RModelData.java index 1adbb75652..3889b300b5 100644 --- a/org.adempiere.base/src/org/compiere/report/core/RModelData.java +++ b/org.adempiere.base/src/org/compiere/report/core/RModelData.java @@ -188,7 +188,7 @@ public class RModelData { if (log.isLoggable(Level.FINE)) log.fine("Start Rows=" + m_rows.size()); - // Row level Funcions + // Row level Functions // would come here // Group by Values diff --git a/org.adempiere.base/src/org/compiere/tools/FileUtil.java b/org.adempiere.base/src/org/compiere/tools/FileUtil.java index 280cae1da7..2188602115 100644 --- a/org.adempiere.base/src/org/compiere/tools/FileUtil.java +++ b/org.adempiere.base/src/org/compiere/tools/FileUtil.java @@ -364,7 +364,7 @@ public class FileUtil /** * Get Filter String - * @return flter String + * @return filter String */ String getFilterString() { diff --git a/org.adempiere.base/src/org/compiere/util/EmailSrv.java b/org.adempiere.base/src/org/compiere/util/EmailSrv.java index b81a1f54d2..ca8198d77d 100644 --- a/org.adempiere.base/src/org/compiere/util/EmailSrv.java +++ b/org.adempiere.base/src/org/compiere/util/EmailSrv.java @@ -955,7 +955,7 @@ public class EmailSrv { */ public List lsEmbedPart = new ArrayList(); /** - * list part unknow to process + * list part unknown to process */ public List lsUnknowPart = new ArrayList(); diff --git a/org.adempiere.base/src/org/compiere/util/NullParameter.java b/org.adempiere.base/src/org/compiere/util/NullParameter.java index b7fbbb2970..25f432f4bb 100644 --- a/org.adempiere.base/src/org/compiere/util/NullParameter.java +++ b/org.adempiere.base/src/org/compiere/util/NullParameter.java @@ -33,7 +33,7 @@ public class NullParameter implements Serializable private static final long serialVersionUID = 5098594046699488306L; /** - * Cosntructor + * Constructor * @param type SQL Type java.sql.Types.* */ public NullParameter(int type) diff --git a/org.adempiere.base/src/org/compiere/wf/MWFActivity.java b/org.adempiere.base/src/org/compiere/wf/MWFActivity.java index bbc30a2128..28cf6e9606 100644 --- a/org.adempiere.base/src/org/compiere/wf/MWFActivity.java +++ b/org.adempiere.base/src/org/compiere/wf/MWFActivity.java @@ -141,19 +141,19 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable return sb.toString(); } // getActivityInfo - /** - * UUID based Constructor - * @param ctx Context - * @param AD_WF_Activity_UU UUID key - * @param trxName Transaction - */ - public MWFActivity(Properties ctx, String AD_WF_Activity_UU, String trxName) { - super(ctx, AD_WF_Activity_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param AD_WF_Activity_UU UUID key + * @param trxName Transaction + */ + public MWFActivity(Properties ctx, String AD_WF_Activity_UU, String trxName) { + super(ctx, AD_WF_Activity_UU, trxName); if (Util.isEmpty(AD_WF_Activity_UU)) throw new IllegalArgumentException ("Cannot create new WF Activity directly"); m_state = new StateEngine (getWFState()); - } - + } + /** * Standard Constructor * @param ctx context @@ -181,7 +181,7 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable } // MWFActivity /** - * Parent Contructor + * Parent Constructor * @param process process * @param AD_WF_Node_ID start node */ diff --git a/org.adempiere.base/src/org/compiere/wf/MWFNodeNext.java b/org.adempiere.base/src/org/compiere/wf/MWFNodeNext.java index 35c23b31f1..327726bbd6 100644 --- a/org.adempiere.base/src/org/compiere/wf/MWFNodeNext.java +++ b/org.adempiere.base/src/org/compiere/wf/MWFNodeNext.java @@ -44,20 +44,20 @@ public class MWFNodeNext extends X_AD_WF_NodeNext implements ImmutablePOSupport */ private static final long serialVersionUID = 5965306487040965994L; - /** - * UUID based Constructor - * @param ctx Context - * @param AD_WF_NodeNext_UU UUID key - * @param trxName Transaction - */ - public MWFNodeNext(Properties ctx, String AD_WF_NodeNext_UU, String trxName) { - super(ctx, AD_WF_NodeNext_UU, trxName); + /** + * UUID based Constructor + * @param ctx Context + * @param AD_WF_NodeNext_UU UUID key + * @param trxName Transaction + */ + public MWFNodeNext(Properties ctx, String AD_WF_NodeNext_UU, String trxName) { + super(ctx, AD_WF_NodeNext_UU, trxName); if (Util.isEmpty(AD_WF_NodeNext_UU)) setInitialDefaults(); - } - + } + /** - * Standard Costructor + * Standard Constructor * @param ctx context * @param AD_WF_NodeNext_ID id * @param trxName transaction diff --git a/org.adempiere.base/src/org/eevolution/process/BankTransfer.java b/org.adempiere.base/src/org/eevolution/process/BankTransfer.java index 5e594d4c0c..7f2d275b59 100644 --- a/org.adempiere.base/src/org/eevolution/process/BankTransfer.java +++ b/org.adempiere.base/src/org/eevolution/process/BankTransfer.java @@ -49,7 +49,7 @@ public class BankTransfer extends SvrProcess private int p_C_ConversionType_ID = 0; // Payment Conversion Type private int p_C_Charge_ID = 0; // Charge to be used as bridge - private BigDecimal p_Amount = Env.ZERO; // Amount to be transfered between the accounts + private BigDecimal p_Amount = Env.ZERO; // Amount to be transferred between the accounts private int p_From_C_BankAccount_ID = 0; // Bank Account From private int p_To_C_BankAccount_ID= 0; // Bank Account To private Timestamp p_StatementDate = null; // Date Statement diff --git a/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/BridgeServlet.java b/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/BridgeServlet.java index b5f1590d57..84a8b9f46a 100644 --- a/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/BridgeServlet.java +++ b/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/BridgeServlet.java @@ -66,7 +66,7 @@ public class BridgeServlet extends HttpServlet { } /** - * Search from OSGi registry the servlet, ressources... to executed according the path of the HTTP request. If no service are founded : + * Search from OSGi registry the servlet, resources... to execute according to the path of the HTTP request. If no services are found : *
      *
    • if {@link FilterChain} is not null : {@link FilterChain#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse)} is called.
    • *
    • otherwise throw 404 error.
    • diff --git a/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/ProxyContext.java b/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/ProxyContext.java index a5af14fa86..8d4b498f75 100644 --- a/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/ProxyContext.java +++ b/org.adempiere.eclipse.equinox.http.servlet/src/org/adempiere/eclipse/equinox/http/servlet/ProxyContext.java @@ -25,7 +25,7 @@ import org.osgi.service.http.HttpContext; * The Http Service also requires a ServletContext namespaced by each individual HttpContext. The ProxyContext provides support for the * attribute map of a ServletContext again namespaced by HttpContext as specified in the Http Service specification. The ContextAttributes * are reference counted so that when the HttpContext is no longer referenced the associated context attributes can be - * garbage collected and the context temp dir deleteted. + * garbage collected and the context temp dir deleted. */ public class ProxyContext { private static final String JAVAX_SERVLET_CONTEXT_TEMPDIR = "javax.servlet.context.tempdir"; //$NON-NLS-1$ @@ -86,7 +86,7 @@ public class ProxyContext { /** * deleteDirectory is a convenience method to recursively delete a directory * @param directory - the directory to delete. - * @return was the delete succesful + * @return was the delete successful */ protected static boolean deleteDirectory(File directory) { if (directory.exists() && directory.isDirectory()) { diff --git a/org.adempiere.install/src/org/compiere/install/Config.java b/org.adempiere.install/src/org/compiere/install/Config.java index 4b3f0ceba2..d3e86a0416 100644 --- a/org.adempiere.install/src/org/compiere/install/Config.java +++ b/org.adempiere.install/src/org/compiere/install/Config.java @@ -97,7 +97,7 @@ public abstract class Config /** * UI Signal OK - * @param cb ckeck box + * @param cb check box * @param resString resource string key * @param pass true if test passed * @param critical true if critical diff --git a/org.adempiere.install/src/org/compiere/install/KeyStoreMgt.java b/org.adempiere.install/src/org/compiere/install/KeyStoreMgt.java index d691545671..902dd58ffb 100644 --- a/org.adempiere.install/src/org/compiere/install/KeyStoreMgt.java +++ b/org.adempiere.install/src/org/compiere/install/KeyStoreMgt.java @@ -291,7 +291,7 @@ public class KeyStoreMgt } /** - * Get Distinguised Name + * Get Distinguished Name * @param parent interactive dialog * @return dname or null */ @@ -378,7 +378,7 @@ public class KeyStoreMgt /** * Escape Commas * @param in input string - * @return excaped string + * @return escaped string */ public static String escapeCommas(String in) { diff --git a/org.adempiere.install/src/org/compiere/install/util/ALayout.java b/org.adempiere.install/src/org/compiere/install/util/ALayout.java index b31f7fd20a..dd37ce20cc 100644 --- a/org.adempiere.install/src/org/compiere/install/util/ALayout.java +++ b/org.adempiere.install/src/org/compiere/install/util/ALayout.java @@ -50,7 +50,7 @@ public class ALayout implements LayoutManager2 } // ALayout /** - * Detail Contructor + * Detail Constructor * @param spaceH horizontal space (top, between rows, button) * @param spaceV vertical space (left, between columns, right) * @param colFill fields are fully filled (rather then preferred size) @@ -162,7 +162,7 @@ public class ALayout implements LayoutManager2 /** * Calculate Layout Size * @param parent Parent Container - * @param how P=Preferred - M=Maximum = m=Mimimum + * @param how P=Preferred - M=Maximum = m=Minimum * @return Size */ private Dimension calculateLayoutSize(Container parent, char how) diff --git a/org.adempiere.install/src/org/compiere/install/util/AppsAction.java b/org.adempiere.install/src/org/compiere/install/util/AppsAction.java index 294367cdbf..1e66ed4407 100644 --- a/org.adempiere.install/src/org/compiere/install/util/AppsAction.java +++ b/org.adempiere.install/src/org/compiere/install/util/AppsAction.java @@ -70,7 +70,7 @@ public final class AppsAction extends AbstractAction * * @param action base action command - used as AD_Message for Text and Icon name * @param accelerator optional keystroke for accelerator - * @param text text, if null defered from action + * @param text text, if null deferred from action */ public AppsAction (String action, KeyStroke accelerator, String text) { @@ -82,7 +82,7 @@ public final class AppsAction extends AbstractAction * * @param action base action command - used as AD_Message for Text and Icon name * @param accelerator optional keystroke for accelerator - * @param toolTipText text, if null defered from action + * @param toolTipText text, if null deferred from action * @param toggle is toggle action (maintains state) */ public AppsAction (String action, KeyStroke accelerator, String toolTipText, boolean toggle) diff --git a/org.adempiere.install/src/org/compiere/install/util/ConfirmPanel.java b/org.adempiere.install/src/org/compiere/install/util/ConfirmPanel.java index c313a0b2db..781c9413b6 100644 --- a/org.adempiere.install/src/org/compiere/install/util/ConfirmPanel.java +++ b/org.adempiere.install/src/org/compiere/install/util/ConfirmPanel.java @@ -612,7 +612,7 @@ public final class ConfirmPanel extends JPanel /** * Is OK Visible - * @return true of OK visisble + * @return true of OK visible */ public boolean isOKVisible() { diff --git a/org.adempiere.payment.processor/src/org/compiere/model/PP_Optimal.java b/org.adempiere.payment.processor/src/org/compiere/model/PP_Optimal.java index 1fd385f86e..5aafdb2963 100644 --- a/org.adempiere.payment.processor/src/org/compiere/model/PP_Optimal.java +++ b/org.adempiere.payment.processor/src/org/compiere/model/PP_Optimal.java @@ -156,7 +156,7 @@ public class PP_Optimal extends PaymentProcessor AVSCodes.put("W", "Nine digit zip matches, address not"); AVSCodes.put("Z", "Five digit zip matches, address not"); AVSCodes.put("N", "No Part matches"); - AVSCodes.put("U", "Address info unabailable"); + AVSCodes.put("U", "Address info unavailable"); AVSCodes.put("R", "Retry"); AVSCodes.put("S", "AVS not supported"); AVSCodes.put("E", "AVS not supported for this industry"); diff --git a/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro.java b/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro.java index 3a6789abd7..2893e7ed3f 100644 --- a/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro.java +++ b/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro.java @@ -201,7 +201,7 @@ public final class PP_PayFlowPro extends PaymentProcessor else log.log(Level.SEVERE, "Response unknown = " + token); } - // Probelms with rc (e.g. 0 with Result=24) + // Problems with rc (e.g. 0 with Result=24) return m_ok; } // process diff --git a/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro4.java b/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro4.java index 5ad63bca2c..fce674e07e 100644 --- a/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro4.java +++ b/org.adempiere.payment.processor/src/org/compiere/model/PP_PayFlowPro4.java @@ -210,7 +210,7 @@ public final class PP_PayFlowPro4 extends PaymentProcessor // Following lines of code are optional. // Begin optional code for displaying SDK errors ... - // It is used to read any errors that might have occured in the SDK. + // It is used to read any errors that might have occurred in the SDK. // Get the transaction errors. String transErrors = m_pp.getTransactionContext().toString(); diff --git a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ColumnElementHandler.java b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ColumnElementHandler.java index 5f2533b4ce..777e78c501 100644 --- a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ColumnElementHandler.java +++ b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ColumnElementHandler.java @@ -84,7 +84,7 @@ public class ColumnElementHandler extends AbstractElementHandler { && mColumn.is_ValueChanged(MColumn.COLUMNNAME_FieldLength) && mColumn.getFieldLength() < mColumn.get_ValueOldAsInt(MColumn.COLUMNNAME_FieldLength) ) { - // IDEMPIERE-1518 2Pack shoud not try to reduce column size + // IDEMPIERE-1518 2Pack should not try to reduce column size mColumn.setFieldLength(mColumn.get_ValueOldAsInt(MColumn.COLUMNNAME_FieldLength)); } diff --git a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ReportViewElementHandler.java b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ReportViewElementHandler.java index 8bc8e7a0dc..ff3964b870 100644 --- a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ReportViewElementHandler.java +++ b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/ReportViewElementHandler.java @@ -104,7 +104,7 @@ public class ReportViewElementHandler extends AbstractElementHandler { AttributesImpl atts = new AttributesImpl(); MReportView m_Reportview = new MReportView(ctx.ctx, AD_ReportView_ID, getTrxName(ctx)); - // Export Table if neccessary + // Export Table if necessary ElementHandler tableHandler = packOut.getHandler(I_AD_Table.Table_Name); try { tableHandler.packOut(packOut, document, null, m_Reportview.getAD_Table_ID()); diff --git a/org.adempiere.replication.server/src/org/adempiere/server/rpl/imp/TopicImportProcessor.java b/org.adempiere.replication.server/src/org/adempiere/server/rpl/imp/TopicImportProcessor.java index 2f7e042249..6727cea4ee 100644 --- a/org.adempiere.replication.server/src/org/adempiere/server/rpl/imp/TopicImportProcessor.java +++ b/org.adempiere.replication.server/src/org/adempiere/server/rpl/imp/TopicImportProcessor.java @@ -126,7 +126,7 @@ public class TopicImportProcessor implements IImportProcessor { if ( topicListener != null ) { topicListener.stop(); - log.info("Stoped topicListener." ); + log.info("Stopped topicListener." ); } } diff --git a/org.adempiere.replication/src/org/adempiere/process/rpl/exp/ExportHelper.java b/org.adempiere.replication/src/org/adempiere/process/rpl/exp/ExportHelper.java index 64c87a1a50..57205e4226 100644 --- a/org.adempiere.replication/src/org/adempiere/process/rpl/exp/ExportHelper.java +++ b/org.adempiere.replication/src/org/adempiere/process/rpl/exp/ExportHelper.java @@ -254,7 +254,7 @@ public class ExportHelper { // process single XML Attribute // Create new element Element newElement = outDocument.createElement(formatLine.getValue()); - if (log.isLoggable(Level.INFO)) log.info("Format Line Seach key: "+ formatLine.getValue()); + if (log.isLoggable(Level.INFO)) log.info("Format Line Search key: "+ formatLine.getValue()); if (formatLine.getAD_Column_ID() == 0) { throw new Exception(Msg.getMsg (masterPO.getCtx(), "EXPColumnMandatory")); } diff --git a/org.adempiere.replication/src/org/adempiere/process/rpl/imp/ImportHelper.java b/org.adempiere.replication/src/org/adempiere/process/rpl/imp/ImportHelper.java index f0ca418140..7ec7a88342 100755 --- a/org.adempiere.replication/src/org/adempiere/process/rpl/imp/ImportHelper.java +++ b/org.adempiere.replication/src/org/adempiere/process/rpl/imp/ImportHelper.java @@ -296,7 +296,7 @@ public class ImportHelper { // and set value of column! for (MEXPFormatLine formatLine : formatLines) { - log.info("=================== Beginnig of Format Line ==============================="); + log.info("=================== Beginning of Format Line =============================="); if (log.isLoggable(Level.INFO)) log.info("formatLine: [" + formatLine.toString() + "]"); //Get the value Object value = getValueFromFormat(formatLine,po,rootElement,result,ReplicationType); @@ -343,7 +343,7 @@ public class ImportHelper { String xPath = null; xPath = "" + line.getValue() + ""; - if (log.isLoggable(Level.INFO)) log.info("Seach for XML Element = " + xPath); + if (log.isLoggable(Level.INFO)) log.info("Search for XML Element = " + xPath); Element referencedNode = XMLHelper.getElement(xPath, rootElement); if (log.isLoggable(Level.INFO)) log.info("referencedNode = " + referencedNode); diff --git a/org.adempiere.report.jasper/doc/org/compiere/report/ReportStarter.html b/org.adempiere.report.jasper/doc/org/compiere/report/ReportStarter.html index 8b0e5fc66b..57c8a97697 100644 --- a/org.adempiere.report.jasper/doc/org/compiere/report/ReportStarter.html +++ b/org.adempiere.report.jasper/doc/org/compiere/report/ReportStarter.html @@ -22,14 +22,14 @@ function windowTitle() - + - - + +