copyright messages updated in all java filees.
[utils] / system / spring / src / test / java / org / wamblee / system / spring / HelloService.java
index cfa5bae60069d8b0cc2842033ad324e39a21869e..8feead0563f27c16832b74468a5f90887ede2153 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */ 
 package org.wamblee.system.spring;
 
+/**
+ * 
+ * @author $author$
+ * @version $Revision$
+ */
 public class HelloService {
-       
-       private String _msg; 
-       
-       public HelloService(String aMsg) {
-          SpringComponentTest.EVENT_TRACKER.eventOccurred(aMsg);
-               _msg = aMsg; 
-       }
-       
-       public String say() { 
-               return _msg; 
-       }
+    private String msg;
+
+    /**
+     * Creates a new HelloService object.
+     * 
+     */
+    public HelloService(String aMsg) {
+        SpringComponentTest.EVENT_TRACKER.eventOccurred(aMsg);
+        msg = aMsg;
+    }
+
+    public String say() {
+        return msg;
+    }
 }