Ejemplo n.º 1
0
 /**
  * Sets the appropriate property value, if possible. Otherwise, this silently fails.
  *
  * @param value the new value for the appropriate property
  * @param rowIndex the row corresponding to a property
  * @param columnIndex only the value column (column one) works
  */
 public void setValueAt(Object value, int rowIndex, int columnIndex) {
   if (columnIndex == 1) {
     InstancePropertyDescriptor row = getRow(rowIndex);
     if (row.isSettable(props.getObject())) {
       row.applySetter(props.getObject(), value);
     }
   }
 }