Ignore:
Timestamp:
07/14/13 23:20:04 (11 years ago)
Author:
psniegowski
Message:

HIGHLIGHTS:

  • improve tree side notes
  • improve GUI layout
  • add foldable list of occured events to EventControl?
  • improve automatic type conversion in proxy listeners
  • implement several Access functionalities as algorithms independent of Access type
  • introduce draft base classes for distributed experiments
  • automatically register dependant Java classes to FramsClass? registry
  • add testing prime experiment and configuration
  • simplify and improve task dispatching

CHANGELOG:
Improve task dispatching in RemoteTree?.

GUI no longer hangs on connection problems.

Make all dispatchers joinables.

Refactorize Thread dispatcher.

Remove Task and PeriodicTask?.

Use Java utilities in those situations.

Reworking tasks dispatching.

Fix bug in EventControl? listener dispatching.

Minor improvements.

Add testing configuration for ExternalProcess? in GUI.

More improvement to prime.

Support for USERREADONLY in GUI.

Add that flag to various params in Java classes.

Remove redundant register clauses from several FramsClassAnnotations?.

Automatically gather and register dependant classes.

Add configuration for prime.

Improve Simulator class.

Add prime.xml configuration.

Introduce draft Experiment and Simulator classes.

Add prime experiment tests.

Enclose typical map with listeners into SimpleUniqueList?.

Needfile works in GUI.

Improve needfile handling in Browser.

More improvement with NeedFile?.

Implementing needfile.

Update test.

Rename ChangeEvent? to TestChangeEvent?.

Automatic argument type search in RemoteTree? listeners.

MultiParamLoader? uses AccessProvider?. By default old implementation
enclosed in AccessStash? or Registry.

Minor changes.

Rename SourceInterface? to Source.

Also improve toString of File and ListSource?.

Remove unused SimpleSource? class.

Add clearing in HistoryControl?.

Show entries in table at EventControl?.

Improve EventControl?.

Add listeners registration to EventControl?.

Add foldable table to HistoryControl?.

Add control row to Procedure and Event controls.

Improve layout of controls.

Another minor change to gui layout.

Minor improvement in the SliderControl?.

Minor changes.

Move ReflectionAccess?.Backend to separate file.

It was to cluttered.

Cleanup in ReflectionAccess?.

Move setMin, setMax, setDef to AccessOperations?.

Extract loading operation into AccessOperations?.

Append Framsticks to name of UnsupportedOperationException?.

The java.lang.UnsupportedOperationException? was shadowing this class.

Rename params.Util to params.ParamsUtil?.

Several improvements.

Minor changes.

Implement revert functionality.

Improve local changes management.

Minor improvement.

Remove methods rendered superfluous after SideNoteKey? improvement.

Improve SideNoteKey?.

It is now generic type, so explicit type specification at
call site is no more needed.

Introduce SideNoteKey? interface.

Only Objects implementing that key may be used as side note keys.

Minor improvements.

Use strings instead of ValueControls? in several gui mappings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/main/src/main/java/com/framsticks/gui/table/TableModel.java

    r100 r101  
    33import java.util.ArrayList;
    44import java.util.Collections;
    5 import java.util.LinkedList;
    65import java.util.List;
    76
     
    109import javax.swing.JTable;
    1110import javax.swing.UIManager;
    12 import javax.swing.event.TableModelEvent;
    13 import javax.swing.event.TableModelListener;
    1411
    1512import org.apache.logging.log4j.Logger;
     
    2320import com.framsticks.util.lang.Casting;
    2421
    25 public class TableModel implements javax.swing.table.TableModel {
     22public class TableModel extends AbstractTableModel {
    2623
    2724        private static final Logger log = LogManager.getLogger(TableModel.class);
    2825
    29         protected List<TableModelListener> listeners = new LinkedList<>();
    3026        protected ListAccess access;
    3127        protected Access elementAccess;
     
    5248        }
    5349
    54         protected void refreshAll() {
    55                 for (TableModelListener l : listeners) {
    56                         l.tableChanged(new TableModelEvent(this));
    57                 }
    58         }
    5950
    6051        /**
     
    7465        }
    7566
    76         @Override
    77         public void addTableModelListener(TableModelListener listener) {
    78                 listeners.add(listener);
    79         }
    8067
    8168        @Override
     
    114101        }
    115102
    116         @Override
    117         public void removeTableModelListener(TableModelListener listener) {
    118                 listeners.remove(listener);
    119         }
    120103
    121104
Note: See TracChangeset for help on using the changeset viewer.