updated coding rules.
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X8.java
index 84b450f116fec601b35b150eef7ed2f24d8ac357..ebfedc37d4fd0be133b24efd10302062e03cc2cb 100644 (file)
@@ -17,24 +17,24 @@ package org.wamblee.system.adapters;
 
 public class X8 {
 
-       private X1 _x1;
-       private X4 _x4; 
+       private X1 x1;
+       private X4 x4; 
        
        public X8(X1 aX1) {
                AdapterTestCase.EVENT_TRACKER.eventOccurred("x8(x1)");
-               _x1 = aX1;
+               x1 = aX1;
        }
        
        public void setX4(X4 aX4) {
            AdapterTestCase.EVENT_TRACKER.eventOccurred("x8.setX4(x4)");
-        _x4 = aX4;
+        x4 = aX4;
     }
        
        public X4 getX4() {
-        return _x4;
+        return x4;
     }
        
        public X1 getX1() {
-               return _x1;
+               return x1;
        }
 }