Commit in java/trunk/conditions/src/main/java/org/hps/conditions on MAIN
AbstractConditionsObject.java+43-38441 -> 442
ConditionsObjectCollection.java+34-34441 -> 442
ConditionsObjectException.java+3-2441 -> 442
ConditionsRecord.java+1-1441 -> 442
+81-75
4 modified files
Variable renaming.

java/trunk/conditions/src/main/java/org/hps/conditions
AbstractConditionsObject.java 441 -> 442
--- java/trunk/conditions/src/main/java/org/hps/conditions/AbstractConditionsObject.java	2014-04-03 16:33:33 UTC (rev 441)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/AbstractConditionsObject.java	2014-04-03 16:35:03 UTC (rev 442)
@@ -11,42 +11,42 @@
  */
 public abstract class AbstractConditionsObject implements ConditionsObject {
 
-    private TableMetaData _tableMetaData = null;
-    protected int _rowId = -1;
-    protected int _collectionId = -1;
-    protected boolean _isDirty = false;
-    protected boolean _isReadOnly = false;
-    protected FieldValueMap _fieldValues;
+    private TableMetaData tableMetaData = null;
+    protected int rowId = -1;
+    protected int collectionId = -1;
+    protected boolean isDirty = false;
+    protected boolean isReadOnly = false;
+    protected FieldValueMap fieldValues;
         
     /**
      * Constructor for sub-classing.
      */
     protected AbstractConditionsObject() {     
-        _fieldValues = new FieldValueMap();
+        fieldValues = new FieldValueMap();
     }
             
     public TableMetaData getTableMetaData() {
-        return _tableMetaData;
+        return tableMetaData;
     }
     
     public int getRowId() {
-        return _rowId;
+        return rowId;
     }
 
     public int getCollectionId() {
-        return _collectionId;
+        return collectionId;
     }
     
     public boolean isReadOnly() {
-        return _isReadOnly;
+        return isReadOnly;
     }
 
     public boolean isNew() {
-        return _rowId == -1;
+        return rowId == -1;
     }
 
     public boolean isDirty() {
-        return _isDirty;
+        return isDirty;
     }
     
     public void delete() throws ConditionsObjectException {
@@ -56,9 +56,9 @@
         if (isNew()) {
             throw new ConditionsObjectException("This object is not in the database and so cannot be deleted.");
         }
-        String query = QueryBuilder.buildDelete(_tableMetaData.getTableName(), _rowId);
+        String query = QueryBuilder.buildDelete(tableMetaData.getTableName(), rowId);
         DatabaseConditionsManager.getInstance().updateQuery(query);
-        _rowId = -1;
+        rowId = -1;
     }
     
     public void insert() throws ConditionsObjectException {
@@ -66,19 +66,19 @@
             throw new ConditionsObjectException("Record already exists in database and cannot be inserted.");
         if (isReadOnly())
             throw new ConditionsObjectException("This object is set to read only mode.");
-        if (_fieldValues.size() == 0) 
+        if (fieldValues.size() == 0) 
             throw new ConditionsObjectException("There are no field values to insert.");
         if (!hasValidCollection())
             throw new ConditionsObjectException("The object's collection ID is not valid.");
         String query = QueryBuilder.buildInsert(getTableMetaData().getTableName(), 
                 getCollectionId(),
                 getTableMetaData().getFieldNames(),
-                _fieldValues.valuesToArray());
+                fieldValues.valuesToArray());
         List<Integer> keys = DatabaseConditionsManager.getInstance().updateQuery(query);
         if (keys.size() == 0 || keys.size() > 1) {
             throw new ConditionsObjectException("SQL insert returned wrong number of keys: " + keys.size());
         }
-        _rowId = keys.get(0);
+        rowId = keys.get(0);
     }
 
     public void select() throws ConditionsObjectException {
@@ -86,7 +86,7 @@
             throw new ConditionsObjectException("Record has not been inserted into the database yet.");
         } 
         String query = QueryBuilder.buildSelect(
-                getTableMetaData().getTableName(), _collectionId, _fieldValues.fieldsToArray(), "id ASC");
+                getTableMetaData().getTableName(), collectionId, fieldValues.fieldsToArray(), "id ASC");
         DatabaseConditionsManager manager = DatabaseConditionsManager.getInstance();
         ResultSet resultSet = manager.selectQuery(query);  
         try {
@@ -94,13 +94,14 @@
             int ncolumns = metadata.getColumnCount();
             if (resultSet.next()) {        
                 for (int i=1; i<=ncolumns; i++) {
-                    _fieldValues.put(metadata.getColumnName(i), resultSet.getObject(i));
+                    fieldValues.put(metadata.getColumnName(i), resultSet.getObject(i));
                 }
             }    
         } catch (SQLException e) {
             throw new ConditionsObjectException(e.getMessage(), this);
         }
         DatabaseConditionsManager.close(resultSet);
+        resultSet = null;
     }
         
     public void update() throws ConditionsObjectException {
@@ -110,66 +111,70 @@
         if (isNew()) {
             throw new ConditionsObjectException("Cannot call update on a new record.", this);
         }
-        if (_fieldValues.size() == 0) {
+        if (fieldValues.size() == 0) {
             throw new ConditionsObjectException("No field values to update.", this);
         }
         String query = QueryBuilder.buildUpdate(
-                _tableMetaData.getTableName(), 
-                _rowId, 
-                _fieldValues.fieldsToArray(), 
-                _fieldValues.valuesToArray());
+                tableMetaData.getTableName(), 
+                rowId, 
+                fieldValues.fieldsToArray(), 
+                fieldValues.valuesToArray());
         DatabaseConditionsManager.getInstance().updateQuery(query);
         setIsDirty(false);
     }
     
     public void setFieldValue(String key, Object value) {
-        _fieldValues.put(key, value);
+        fieldValues.put(key, value);
         setIsDirty(true);
     }
     
     public void setFieldValues(FieldValueMap fieldValues) {
-        _fieldValues = fieldValues;
+        this.fieldValues = fieldValues;
         if (!isNew()) {
             setIsDirty(true);
         }        
     }
     
     public <T> T getFieldValue(Class<T> klass, String field) {
-        return klass.cast(_fieldValues.get(field)); 
+        return klass.cast(fieldValues.get(field)); 
     }
     
     @SuppressWarnings("unchecked")
     public <T> T getFieldValue(String field) {
-        return (T)_fieldValues.get(field);
+        return (T)fieldValues.get(field);
     }
 
     public void setTableMetaData(TableMetaData tableMetaData) throws ConditionsObjectException {
-        if (_tableMetaData != null) 
+        if (this.tableMetaData != null) 
             throw new ConditionsObjectException("The table meta data cannot be reset on an object.", this);
-        _tableMetaData = tableMetaData;
+        this.tableMetaData = tableMetaData;
     }
 
     public void setCollectionId(int collectionId) throws ConditionsObjectException {
-        if (_collectionId != -1)
+        if (this.collectionId != -1)
             throw new ConditionsObjectException("The collection ID cannot be reassigned once set.", this);
-        _collectionId = collectionId;
+        this.collectionId = collectionId;
     }
         
     public void setIsDirty(boolean isDirty) {
-        _isDirty = isDirty;
+        this.isDirty = isDirty;
     }
     
     public void setIsReadOnly() {
-        _isReadOnly = true;
+        isReadOnly = true;
     }
     
     public void setRowId(int rowId) throws ConditionsObjectException {
-        if (_rowId != -1)
+        if (this.rowId != -1)
             throw new ConditionsObjectException("The row ID cannot be reassigned on an existing object.");
-        _rowId = rowId;
+        this.rowId = rowId;
     }
     
     private boolean hasValidCollection() {
-        return _collectionId != -1;
+        return collectionId != -1;
     }    
+    
+    protected void finalize() {
+        System.out.println("finalizing ConditionsObject " + System.identityHashCode(this));
+    }
 }
\ No newline at end of file

java/trunk/conditions/src/main/java/org/hps/conditions
ConditionsObjectCollection.java 441 -> 442
--- java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsObjectCollection.java	2014-04-03 16:33:33 UTC (rev 441)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsObjectCollection.java	2014-04-03 16:35:03 UTC (rev 442)
@@ -9,32 +9,32 @@
 // TODO: Collections with a mix of different collection IDs on their objects should always be read only.
 public class ConditionsObjectCollection<T extends ConditionsObject> {
 
-    protected List<T> _objects = new ArrayList<T>();    
-    protected TableMetaData _tableMetaData;
-    protected int _collectionId = -1;
-    protected boolean _isReadOnly;
-    protected boolean _isDirty;
-    protected boolean _isNew;
-    protected ConditionsRecord _conditionsRecord;
+    protected List<T> objects = new ArrayList<T>();    
+    protected TableMetaData tableMetaData;
+    protected int collectionId = -1;
+    protected boolean isReadOnly;
+    protected boolean isDirty;
+    protected boolean isNew;
+    protected ConditionsRecord conditionsRecord;
     
     protected ConditionsObjectCollection() {
     }
             
     public ConditionsObjectCollection(TableMetaData tableMetaData, int collectionId, boolean isReadOnly) {
-        _tableMetaData = tableMetaData;
-        _collectionId = collectionId;
-        _isReadOnly = isReadOnly;
+        this.tableMetaData = tableMetaData;
+        this.collectionId = collectionId;
+        this.isReadOnly = isReadOnly;
         if (collectionId == -1) {
-            _isNew = true;
+            this.isNew = true;
         }
     }
     
     public T get(int index) {
-        return _objects.get(index);
+        return objects.get(index);
     }
     
     public List<T> getObjects() {
-        return Collections.unmodifiableList(_objects);
+        return Collections.unmodifiableList(objects);
     }
     
     public boolean contains(Object object) {
@@ -45,7 +45,7 @@
     // from this collection's, in which case this collection becomes "mixed" and it should be
     // flagged as read only.
     public void add(T object) throws ConditionsObjectException {
-        if (_objects.contains(object)) {
+        if (objects.contains(object)) {
             throw new IllegalArgumentException("Collection already contains this object.");
         }
         try {
@@ -57,25 +57,25 @@
             throw new IllegalArgumentException("Error assigning collection ID to object.", x);
         }
         // Set the table meta data on the object if it does not have any.
-        if (object.getTableMetaData() == null && _tableMetaData != null)
-            object.setTableMetaData(_tableMetaData);
-        _objects.add(object);
+        if (object.getTableMetaData() == null && tableMetaData != null)
+            object.setTableMetaData(tableMetaData);
+        objects.add(object);
         if (!isNew())
             setIsDirty(true);
     }
 
     public TableMetaData getTableMetaData() {
-        return _tableMetaData;        
+        return tableMetaData;        
     }
 
     public int getCollectionId() {
-        return _collectionId;
+        return collectionId;
     }
     
     // TODO: Should this also insert new records that do not exist?
     // TODO: This operation should lock the table.
     public void update() throws ConditionsObjectException {
-        for (ConditionsObject object : _objects) {            
+        for (ConditionsObject object : objects) {            
             object.update();
         }        
         setIsDirty(false);
@@ -86,7 +86,7 @@
         if (isReadOnly()) {
             throw new ConditionsObjectException("Collection is read only.");
         }
-        for (ConditionsObject object : _objects) {            
+        for (ConditionsObject object : objects) {            
             object.delete();
         }                
     }
@@ -94,7 +94,7 @@
     // TODO: This should not loop.  It should select all the objects with a matching collection ID
     // from the database.
     public void select() throws ConditionsObjectException, SQLException {
-        for (ConditionsObject object : _objects) {
+        for (ConditionsObject object : objects) {
             object.select();
         }
     }
@@ -105,48 +105,48 @@
         if (!isNew()) {
             throw new ConditionsObjectException("Collection already exists in the database.");
         }
-        for (ConditionsObject object : _objects) {
+        for (ConditionsObject object : objects) {
             //if (object.isNew()) {
             object.insert();
             //}
         }
-        _isNew = false;
+        isNew = false;
     }
 
     public boolean isDirty() {
-        return _isDirty;
+        return isDirty;
     }
 
     public boolean isReadOnly() {
-        return _isReadOnly;
+        return isReadOnly;
     }
     
     void setIsDirty(boolean isDirty) {
-        _isDirty = isDirty;
+        this.isDirty = isDirty;
     }
     
     // TODO: This can probably just check if collection ID is not valid e.g. equals -1.    
     public boolean isNew() {
-        return _isNew;
+        return isNew;
     }
     
     public void setCollectionId(int collectionId) throws ConditionsObjectException {
-        if (_collectionId != -1)
+        if (this.collectionId != -1)
             throw new ConditionsObjectException("The collection ID is already set.");
-        _collectionId = collectionId;
+        this.collectionId = collectionId;
     }
     
     public void setTableMetaData(TableMetaData tableMetaData) {
-        _tableMetaData = tableMetaData;
+        this.tableMetaData = tableMetaData;
     }
     
     public void setIsReadOnly(boolean isReadOnly) {
-        _isReadOnly = isReadOnly;
+        this.isReadOnly = isReadOnly;
     }    
     
     public void setConditionsRecord(ConditionsRecord conditionsRecord) throws ConditionsObjectException {
-        if (_conditionsRecord != null)
+        if (this.conditionsRecord != null)
             throw new ConditionsObjectException("The ConditionsRecord is already set on this collection.");
-        _conditionsRecord = conditionsRecord;
+        this.conditionsRecord = conditionsRecord;
     }
 }

java/trunk/conditions/src/main/java/org/hps/conditions
ConditionsObjectException.java 441 -> 442
--- java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsObjectException.java	2014-04-03 16:33:33 UTC (rev 441)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsObjectException.java	2014-04-03 16:35:03 UTC (rev 442)
@@ -7,7 +7,7 @@
 @SuppressWarnings("serial")
 public final class ConditionsObjectException extends Exception {
 
-    ConditionsObject _object;
+    ConditionsObject object;
 
     public ConditionsObjectException(String message) {
         super(message);
@@ -15,9 +15,10 @@
 
     public ConditionsObjectException(String message, ConditionsObject object) {
         super(message);
+        this.object = object;
     }
     
     public ConditionsObject getConditionsObject() {
-        return _object;
+        return object;
     }
 }
\ No newline at end of file

java/trunk/conditions/src/main/java/org/hps/conditions
ConditionsRecord.java 441 -> 442
--- java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsRecord.java	2014-04-03 16:33:33 UTC (rev 441)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/ConditionsRecord.java	2014-04-03 16:35:03 UTC (rev 442)
@@ -21,7 +21,7 @@
          * are usually all going to be different, the default behavior of the super class is overridden.
          */
         public void add(ConditionsRecord record) {
-            _objects.add(record);
+            objects.add(record);
         }
         
         // FIXME: Should probably override more methods here that don't make sense for this type!
SVNspam 0.1