Author: britter
Date: Sat Jun 1 11:33:55 2013
New Revision: 1488503
URL: http://svn.apache.org/r1488503
Log:
Code formatting, no functional changes
Modified:
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContext.java
Modified:
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContext.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContext.java?rev=1488503&r1=1488502&r2=1488503&view=diff
==============================================================================
---
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContext.java
(original)
+++
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContext.java
Sat Jun 1 11:33:55 2013
@@ -20,23 +20,20 @@ package org.apache.commons.chain2.impl;
* Subclass of <code>ContextBase</code> to exercize the automatic
* delegation to properties of the <code>Context</code> class.
*/
-
public class TestContext extends ContextBase {
-
- /**
- *
- */
private static final long serialVersionUID = 20120724L;
// Read-only property
private String readOnly = "readOnly";
+
public String getReadOnly() {
return (this.readOnly);
}
// Read-write property
private String readWrite = "readWrite";
+
public String getReadWrite() {
return (this.readWrite);
}
@@ -46,13 +43,14 @@ public class TestContext extends Context
// Write-only property
private String writeOnly = "writeOnly";
- public String returnWriteOnly() { // Not a JavaBeans getter
+
+ // Not a JavaBeans getter
+ public String returnWriteOnly() {
return (this.writeOnly);
}
public void setWriteOnly(String writeOnly) {
this.writeOnly = writeOnly;
}
-
}