Ignore:
Timestamp:
07/16/13 23:31:35 (11 years ago)
Author:
psniegowski
Message:

HIGHLIGHTS:

for Joinables running

CHANGELOG:
Add WorkPackageLogic? and classes representing prime experiment state.

Add classes for PrimeExperiment? state.

Extract single netload routine in Simulator.

Working netload with dummy content in PrimeExperiment?.

More development with NetLoadSaveLogic? and PrimeExperiment?.

Improvement around prime.

Improve BufferedDispatcher?.isActive logic.

Add prime-all.xml configuration.

Manual connecting to existing simulators from GUI.

Guard in SimulatorConnector? against expdef mismatch.

Guard against empty target dispatcher in BufferedDispatcher?.

Make BufferedDispatcher? a Dispatcher (and Joinable).

Minor improvements.

Done StackedJoinable?, improve Experiment.

Develop StackedJoinable?.

Add StackedJoinable? utility joinables controller.

Add dependency on apache-commons-lang.

Add ready ListChange? on Simulators.

Improve hints in ListChange?.

Several improvements.

Found bug with dispatching in Experiment.

Minor improvements.

Fix bug with early finishing Server.

Many changes in Dispatching.

Fix bug with connection.

Do not obfuscate log with socket related exceptions.

Add SocketClosedException?.

Add SimulatorConnector?.

Work out conception of experiment composing of logics building blocks.

Rename SinkInterface? to Sink.

Move saving of Accesses into AccessOperations?.

Some improvements to Experiment.

Improve joinables.

Fix issue with joinables closing.

Add direct and managed consoles to popup menu.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/main/src/main/java/com/framsticks/params/ListAccess.java

    r101 r102  
    33
    44
    5 import static com.framsticks.util.lang.Containers.filterInstanceof;
    65
    76import com.framsticks.params.types.EventParam;
     
    3029
    3130
    32         @Override
    33         public void save(SinkInterface sink) {
    34                 for (CompositeParam p : filterInstanceof(getParams(), CompositeParam.class)) {
    35                         Object child = get(p, Object.class);
    36                         //this is probably an assertion
    37                         assert child != null;
    38                         elementAccess.select(child);
    39                         elementAccess.save(sink);
    40                 }
    41         }
    42 
    4331        public Access getElementAccess() {
    4432                return elementAccess;
     
    5745        }
    5846
    59         //TODO it could actually be used also
    6047        @Override
    6148        public void tryAutoAppend(Object object) {
    62                 throw new InvalidOperationException();
     49                throw new InvalidOperationException().msg("It could actually be used also, the Access.select could be used to check whether type is correct");
    6350        }
    6451
Note: See TracChangeset for help on using the changeset viewer.