Author: rahul Date: Fri Apr 25 18:25:18 2008 New Revision: 651769 URL: http://svn.apache.org/viewvc?rev=651769&view=rev Log: Add serialVersionUID and reformat code (use 4 space indentation).
Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java?rev=651769&r1=651768&r2=651769&view=diff ============================================================================== --- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java (original) +++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java Fri Apr 25 18:25:18 2008 @@ -30,26 +30,29 @@ */ public class JSContext extends SimpleContext { - // CONSTRUCTORS + /** Serial version UID. */ + private static final long serialVersionUID = 1L; - /** - * Default constructor - just invokes the SimpleContext default - * constructor. - */ - public JSContext() { - super(); - } + // CONSTRUCTORS - /** - * Child constructor. Just invokes the identical SimpleContext - * constructor. - * - * @param parent Parent context for this context. - * - */ - public JSContext(Context parent) { - super(parent); - } + /** + * Default constructor - just invokes the SimpleContext default + * constructor. + */ + public JSContext() { + super(); + } + + /** + * Child constructor. Just invokes the identical SimpleContext + * constructor. + * + * @param parent Parent context for this context. + * + */ + public JSContext(Context parent) { + super(parent); + } }