Changeset 3461
- Timestamp:
- Jun 7, 2007, 9:28:01 AM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/Enumeration.java
r2992 r3461 92 92 93 93 /** 94 *This method will sort the enumration on the keys using95 * {@link Collections#sort(List, Comparator<Entry<K, V>>)}.96 *The comparator will try to use the keys 'compareTo' method97 *if it implements the Comparable interface98 *otherwilse it will treat the key as a String.99 94 This method will sort the enumration on the keys using 95 {@link Collections#sort(List, Comparator)}. 96 The comparator will try to use the keys 'compareTo' method 97 if it implements the Comparable interface 98 otherwilse it will treat the key as a String. 99 */ 100 100 public void sortKeys() 101 101 { … … 120 120 121 121 /** 122 *This method will sort the enumration on the values using123 * {@link Collections#sort(List, Comparator<Entry<K, V>>)}.124 *The comparator will try to use the values 'compareTo' method125 *if it implements the Comparable interface126 *otherwilse it will treat the value as a String.127 122 This method will sort the enumration on the values using 123 {@link Collections#sort(List, Comparator)}. 124 The comparator will try to use the values 'compareTo' method 125 if it implements the Comparable interface 126 otherwilse it will treat the value as a String. 127 */ 128 128 public void sortValues() 129 129 { -
trunk/src/core/net/sf/basedb/util/parser/ConstantMapper.java
r3264 r3461 25 25 26 26 import java.text.NumberFormat; 27 import java.text.ParsePosition;28 27 29 28 import net.sf.basedb.core.Type; -
trunk/src/install/net/sf/basedb/install/Webclient.java
r3270 r3461 30 30 import net.sf.basedb.core.DbControl; 31 31 import net.sf.basedb.core.Group; 32 import net.sf.basedb.core.StringUtil;33 32 import net.sf.basedb.core.SystemItems; 34 33 import net.sf.basedb.core.ItemKey;
Note: See TracChangeset
for help on using the changeset viewer.