Small Type fixes.

This commit is contained in:
trifonnt 2009-07-10 08:52:41 +00:00
parent 53fac6cb54
commit a933dae10b
2 changed files with 6 additions and 6 deletions

View File

@ -168,7 +168,7 @@ public final class EMail implements Serializable
/** Mail SMTP Server Port */ /** Mail SMTP Server Port */
// @TODO - make port configurable - private int m_smtpPort = 0; // @TODO - make port configurable - private int m_smtpPort = 0;
/** SMTP enable start TLS */ /** SMTP enable start TLS */
// @TODO - make ttls configurable - private boolean m_smtpStarttlsEnable = false; // @TODO - make tls configurable - private boolean m_smtpStarttlsEnable = false;
/** Attachments */ /** Attachments */
private ArrayList<Object> m_attachments; private ArrayList<Object> m_attachments;
/** UserName and Password */ /** UserName and Password */
@ -829,7 +829,7 @@ public final class EMail implements Serializable
} // addAttachment } // addAttachment
/** /**
* Add arbitary Attachment * Add arbitrary Attachment
* @param dataSource content to attach * @param dataSource content to attach
*/ */
public void addAttachment (DataSource dataSource) public void addAttachment (DataSource dataSource)

View File

@ -47,7 +47,7 @@ import org.adempiere.plaf.AdempiereThemeInnova;
import org.compiere.model.ModelValidationEngine; import org.compiere.model.ModelValidationEngine;
/** /**
* Load & Save INI Settings fopm property file * Load & Save INI Settings form property file
* Initiated in Adempiere.startup * Initiated in Adempiere.startup
* Settings activated in ALogin.getIni * Settings activated in ALogin.getIni
* *
@ -184,7 +184,7 @@ public final class Ini implements Serializable
/** Charser Default Value */ /** Charser Default Value */
private static final String DEFAULT_CHARSET = Charset.defaultCharset().name(); private static final String DEFAULT_CHARSET = Charset.defaultCharset().name();
/** Load tab fields meta data using backgrond thread **/ /** Load tab fields meta data using background thread **/
public static final String P_LOAD_TAB_META_DATA_BG = "LoadTabMetaDataBackground"; public static final String P_LOAD_TAB_META_DATA_BG = "LoadTabMetaDataBackground";
public static final String DEFAULT_LOAD_TAB_META_DATA_BG = "N"; public static final String DEFAULT_LOAD_TAB_META_DATA_BG = "N";
@ -613,7 +613,7 @@ public final class Ini implements Serializable
} // setProperty } // setProperty
/** /**
* Get Propery * Get Property
* @param key Key * @param key Key
* @return Value * @return Value
*/ */
@ -633,7 +633,7 @@ public final class Ini implements Serializable
} // getProperty } // getProperty
/** /**
* Get Propery as Boolean * Get Property as Boolean
* @param key Key * @param key Key
* @return Value * @return Value
*/ */