Minor typos and java doc fixes.

This commit is contained in:
trifonnt 2009-12-12 09:33:09 +00:00
parent dfa2d72abe
commit 122f562473
1 changed files with 11 additions and 11 deletions

View File

@ -36,7 +36,7 @@ import org.compiere.model.MBankStatementLoader;
* *
* -loadLines() is called, request the loader to start loading statement lines * -loadLines() is called, request the loader to start loading statement lines
* *
* -for everu statement line that the loader encounteres, it calls the * -for every statement line that the loader encounters, it calls the
* saveLine() method of the MBankStatement controller object it obtained * saveLine() method of the MBankStatement controller object it obtained
* as part of the call to init() * as part of the call to init()
* *
@ -52,7 +52,7 @@ public interface BankStatementLoaderInterface
/** /**
* Initialize the loader * Initialize the loader
* @param controller Reference to the MBankStatementLoader controller object * @param controller Reference to the MBankStatementLoader controller object
* @return Initialized succesfully * @return Initialized successfully
*/ */
public boolean init(MBankStatementLoader controller); public boolean init(MBankStatementLoader controller);
@ -66,24 +66,24 @@ public interface BankStatementLoaderInterface
/** /**
* Start importing statement lines * Start importing statement lines
* @return Statement lines imported succesfully * @return Statement lines imported successfully
*/ */
public boolean loadLines(); public boolean loadLines();
/** /**
* Return the most recent error * Return the most recent error
* @return Error message * @return Error message
* This error message will be handled as a Adempiere message, * This error message will be handled as a ADempiere message,
* (e.g. it can be translated) * (e.g. it can be translated)
*/ */
public String getLastErrorMessage(); public String getLastErrorMessage();
/** /**
* Return the most recent error description * Return the most recent error description
* @return Error discription * @return Error description
* This is an additional error description, it can be used to provided * This is an additional error description, it can be used to provided
* descriptive iformation, such as a file name or SQL error, that can not * descriptive information, such as a file name or SQL error, that can not
* be translated by the Adempiere message system. * be translated by the ADempiere message system.
*/ */
public String getLastErrorDescription(); public String getLastErrorDescription();
@ -112,7 +112,7 @@ public interface BankStatementLoaderInterface
* Additional reference information * Additional reference information
* Statement level reference information. If a specific loader class * Statement level reference information. If a specific loader class
* does not provided this, it is allowed to return null. * does not provided this, it is allowed to return null.
* @return Error discription * @return Statement Reference
*/ */
public String getStatementReference(); public String getStatementReference();
@ -138,7 +138,7 @@ public interface BankStatementLoaderInterface
* Statement line level reference information. * Statement line level reference information.
* For OFX this is the <REFNUM> field. * For OFX this is the <REFNUM> field.
* If a specific loader does not provided this, it is allowed to return null. * If a specific loader does not provided this, it is allowed to return null.
* @return Error discription * @return Reference
*/ */
public String getReference(); public String getReference();
@ -180,7 +180,7 @@ public interface BankStatementLoaderInterface
/** /**
* Effective date * Effective date
* Date theat the funds became available. * Date at the funds became available.
* If a specific loader does not provide this, it is allowed to return null. * If a specific loader does not provide this, it is allowed to return null.
* @return Effective date * @return Effective date
*/ */
@ -261,5 +261,5 @@ public interface BankStatementLoaderInterface
*/ */
public BigDecimal getChargeAmt(); public BigDecimal getChargeAmt();
} //BankStatementLoaderInterface }