Merge commit '42b2e5ca519766e37ce6941ba4faecc9691cc403' into upstream
[debian/openrocket] / core / src / net / sf / openrocket / gui / adaptors / Column.java
index 87997c484736884ac4a2a1a76b32b26b3660bf80..9c4801a613d10953291b07e3e4cd7fc00f11bf25 100644 (file)
@@ -63,5 +63,16 @@ public abstract class Column {
         * @return              the value at the specified position.
         */
        public abstract Object getValueAt(int row);
+
+       /**
+        * Set a value in the table.
+        * 
+        * Override if the cell is editable.
+        * 
+        * @param row
+        * @param value
+        */
+       public void setValueAt(int row, Object value ) {
+       }
        
 }