Small typo fixes.

This commit is contained in:
trifonnt 2009-08-20 12:18:33 +00:00
parent 88d302f2b0
commit 88679e608a
3 changed files with 7 additions and 7 deletions

View File

@ -211,7 +211,7 @@ public class VLocation extends JComponent
} // isReadWrite
/**
* Set Mandatory (and back bolor)
* Set Mandatory (and back color)
* @param mandatory true if mandatory
*/
public void setMandatory (boolean mandatory)

View File

@ -424,10 +424,10 @@ public class VLocationDialog extends CDialog
*/
private String lookupPostcode(MCountry country, String postcode)
{
// Initialise the lookup class.
AddressLookupInterface pcLookup = null;
try {
AddressLookupInterface pcLookupTmp = (AddressLookupInterface) Class
// Initialize the lookup class.
AddressLookupInterface pcLookup = null;
try {
AddressLookupInterface pcLookupTmp = (AddressLookupInterface) Class
.forName(country.getLookupClassName()).newInstance();
pcLookup = pcLookupTmp.newInstance();
} catch (Exception e) {

View File

@ -141,7 +141,7 @@ public class VURL extends JComponent
m_button.setFocusable(false);
this.add(m_button, BorderLayout.EAST);
// Prefereed Size
// Preferred Size
this.setPreferredSize(this.getPreferredSize()); // causes r/o to be the same length
// ReadWrite
if (isReadOnly || !isUpdateable)
@ -221,7 +221,7 @@ public class VURL extends JComponent
/**
* Set ReadWrite
* @param rw read rwite
* @param rw read/write
*/
public void setReadWrite (boolean rw)
{