(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / components / ORMappingConfig.java
index 880e869e916c9f329214cb964717afe89cc5dbd4..5575619bda14c8c13664aa5893fc398daf95e5a0 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.
@@ -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;
     }
 
 }