Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/utils/NoEqualsHelper.java

Diff revisions: vs.
  @@ -5,14 +5,12 @@
5 5 * (<O>) that does NOT support Equals, HashCode, and Comparable to participate
6 6 * in NoEquals... versions of collections
7 7 *
8 - * @param <O>
9 - * A class who's instances have a "ProxyValue" (of type C) that will
8 + * @param <O> A class who's instances have a "ProxyValue" (of type C) that will
10 9 * be used for HashCode, Equals, & Comparability. If this value is
11 10 * null then then the HashCoe == 0, Equals will only be Equal to
12 11 * another null, and nulls will come ahead of Non-nulls during
13 12 * Compare operations.
14 - * @param <C>
15 - * The class of the "ProxyValue" (from the instances of the type O)
13 + * @param <C> The class of the "ProxyValue" (from the instances of the type O)
16 14 * that will be used for HashCode, Equals, & Comparability. If this
17 15 * value is null then then the HashCoe == 0, Equals will only be
18 16 * Equal to another null, and nulls will come ahead of Non-nulls
  @@ -22,7 +20,7 @@
22 20 /**
23 21 * Create an Array of type <O> for the toArray() methods.
24 22 */
25 - public O[] createArray(int size);
23 + public O[] createArray( int size );
26 24
27 25 /**
28 26 * Get the Comparable Proxy Value (usually a String) from a non-null
  @@ -30,5 +28,5 @@
30 28 *
31 29 * @return may be null!
32 30 */
33 - public C getProxyValue(O object);
31 + public C getProxyValue( O object );
34 32 }