On Friday 10 December 2004 21:45, Davanum Srinivas wrote:
> or replace all references of org.apache.axis.enum.* to
> org.apache.axis.constants.*
Unfortunately that doesn't work for a lot of cases. Try this
import org.apache.axis.constants.Style;
public class Test {
public static void method(Style st) {
}
public static void main(String[] args) {
//method(Style.DOCUMENT); // Doesn't compile
method((Style)Style.DOCUMENT); // ClassCastException at runtime
}
}
I don't know of a workaround for this.
Michael
--
Michael Schuerig There is no matrix,
mailto:[EMAIL PROTECTED] only reality.
http://www.schuerig.de/michael/ --Lawrence Fishburn