Examples of IEditable


Examples of org.jamesii.gui.utils.parameters.editable.IEditable

  @Override
  @SuppressWarnings("unchecked")
  // TODO(re027): this needs refactoring anyway
  public void setValueAt(Object value, int row, int col) {
    if (value != null) {
      @SuppressWarnings("rawtypes")
      IEditable parameter = visibleParameters.get(row);
      if (!parameter.hasSubVariable()) {
        parameter.setValue(value);
      } else if (!(parameter.getSubVariable() instanceof IEditableSet)) {
        parameter.getSubVariable().setValue(value);
      }
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.