现在做一个二次开发的项目
以前的JDK是1.4  现在的JDK是1.5 , org.apache.axis.description.OperationDesc oper;
        oper = new org.apache.axis.description.OperationDesc();
        oper.setName("dexptReceiveMsg");
        oper.setStyle(org.apache.axis.enum.Style.WRAPPED);
        oper.setUse(org.apache.axis.enum.Use.LITERAL);
现在
oper.setStyle(org.apache.axis.enum.Style.WRAPPED);
oper.setUse(org.apache.axis.enum.Use.LITERAL);
这两行中的enum 被当做枚举的类型
我想让它作为枚举类型的关键字,有没有办法解决
用的是Eclipse3.2.2, jdk1.5