User 870ab5b546
25-09-2006 18:24:26
I made a copy of your Reactor examples jsp files and put them in a place where I can play around with them, but they don't compile properly. I get these errors for reactor/jsp/index.jsp:
All errors are related to the method getStandardizationType() and the two constants Reactor.PRE and Reactor.POST. I know that the Reactor class has been found properly, because I am able to create instances of it. We're using the JChem build from 8/25/06. Any ideas?
Code: |
An error occurred at line: 171 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:221: cannot find symbol symbol : variable PRE location: class chemaxon.reaction.Reactor int sttype = Reactor.PRE; ^ An error occurred at line: 171 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:226: cannot find symbol symbol : method getStandardizationType() location: class chemaxon.reaction.Reactor sttype = reactor.getStandardizationType(); ^ An error occurred at line: 731 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:791: cannot find symbol symbol : variable PRE location: class chemaxon.reaction.Reactor if (sttype == Reactor.PRE) out.print("selected"); ^ An error occurred at line: 733 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:797: cannot find symbol symbol : variable POST location: class chemaxon.reaction.Reactor if (sttype == Reactor.POST) out.print("selected"); ^ An error occurred at line: 734 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:800: cannot find symbol symbol : variable PRE location: class chemaxon.reaction.Reactor if (sttype == (Reactor.PRE | Reactor.POST)) out.print("selected"); ^ An error occurred at line: 734 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:800: cannot find symbol symbol : variable POST location: class chemaxon.reaction.Reactor if (sttype == (Reactor.PRE | Reactor.POST)) out.print("selected"); ^ An error occurred at line: 734 in the jsp file: /public/reactor/jsp/index.jsp Generated servlet error: /home/aceorg/tomcat5/work/Catalina/localhost-1.5/epoch-plugin/org/apache/jsp/public_/reactor/jsp/index_jsp.java:800: incomparable types: int and boolean if (sttype == (Reactor.PRE | Reactor.POST)) out.print("selected"); |
All errors are related to the method getStandardizationType() and the two constants Reactor.PRE and Reactor.POST. I know that the Reactor class has been found properly, because I am able to create instances of it. We're using the JChem build from 8/25/06. Any ideas?