Iam getting this error.
java.lang.NoSuchMethodError:
com.vsoftcorp.utils.time.TimeInterval.compareTo(Lcom/vsoftcorp/utils/range/RangeIntf;)I
com.vsoftcorp.finance.framework.AccountingEntry.compareTo(AccountingEntry.java:119)
What Does the "L" and "I" mean in
(Lcom/vsoftcorp/utils/range/RangeIntf;)I
thanks in advance
> What Does the "L" and "I" mean in
>
> (Lcom/vsoftcorp/utils/range/RangeIntf;)I
Method signatures are described in JNI using this notation.
The 'I' says the method returns an int. The 'L' and following ';'
surround the name of a class describing the method's argument.
See also:
http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16432
/gordon

Signature
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e