copyright messages updated in all java filees.
[utils] / system / general / src / main / java / org / wamblee / system / components / ORMappingConfig.java
index 880e869e916c9f329214cb964717afe89cc5dbd4..6aad44a11910837f1c5b416a251fcd357e4c2bd7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2008 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.
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */
+ */ 
 package org.wamblee.system.components;
 
 public class ORMappingConfig {
@@ -42,20 +42,20 @@ public class ORMappingConfig {
         }
     };
 
-    private boolean _schemaUpdate;
-    private DatabaseType _type;
+    private boolean schemaUpdate;
+    private DatabaseType type;
 
     public ORMappingConfig(boolean aSchemaUpdate, DatabaseType aType) {
-        _schemaUpdate = aSchemaUpdate;
-        _type = aType;
+        schemaUpdate = aSchemaUpdate;
+        type = aType;
     }
 
     public boolean isSchemaUpdate() {
-        return _schemaUpdate;
+        return schemaUpdate;
     }
 
     public DatabaseType getType() {
-        return _type;
+        return type;
     }
 
 }