You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/07/03 16:53:13 UTC

svn commit: r1499430 - /tomcat/trunk/java/javax/el/ValueExpression.java

Author: markt
Date: Wed Jul  3 14:53:13 2013
New Revision: 1499430

URL: http://svn.apache.org/r1499430
Log:
Re-order to simplify checking against EL spec

Modified:
    tomcat/trunk/java/javax/el/ValueExpression.java

Modified: tomcat/trunk/java/javax/el/ValueExpression.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/el/ValueExpression.java?rev=1499430&r1=1499429&r2=1499430&view=diff
==============================================================================
--- tomcat/trunk/java/javax/el/ValueExpression.java (original)
+++ tomcat/trunk/java/javax/el/ValueExpression.java Wed Jul  3 14:53:13 2013
@@ -24,15 +24,15 @@ public abstract class ValueExpression ex
 
     private static final long serialVersionUID = 8577809572381654673L;
 
-    public abstract Class<?> getExpectedType();
+    public abstract Object getValue(ELContext context) throws NullPointerException, PropertyNotFoundException, ELException;
 
-    public abstract Class<?> getType(ELContext context) throws NullPointerException, PropertyNotFoundException, ELException;
+    public abstract void setValue(ELContext context, Object value) throws NullPointerException, PropertyNotFoundException, PropertyNotWritableException, ELException;
 
     public abstract boolean isReadOnly(ELContext context) throws NullPointerException, PropertyNotFoundException, ELException;
 
-    public abstract void setValue(ELContext context, Object value) throws NullPointerException, PropertyNotFoundException, PropertyNotWritableException, ELException;
+    public abstract Class<?> getType(ELContext context) throws NullPointerException, PropertyNotFoundException, ELException;
 
-    public abstract Object getValue(ELContext context) throws NullPointerException, PropertyNotFoundException, ELException;
+    public abstract Class<?> getExpectedType();
 
     /**
      * @since EL 2.2



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org