Ignore:
Timestamp:
09/10/13 21:11:41 (11 years ago)
Author:
psniegowski
Message:

HIGHLIGHTS:

  • import refactorization: move Tree, Path, etc.

from core to structure package

  • initial serialization implementation
  • improve PrimeExperiment? test
  • many organizational changes and convenience improvements

CHANGELOG:
Make registry in AbstractTree? final.

Move most classes from core to structure package.

Minor changes.

Switch names of Future and FutureHandler?.

Rename ExceptionResultHandler? to ExceptionHandler?.

Rename ExceptionHandler? to ExceptionDispatcherHandler?.

Fix bug in ParamCandidate? cache.

Add missing synchronization to the BufferedDispatcher?.

Develop @Serialized support.

Rework serialization further.

Add serialization/deserialization interface to ValueParam?.

Move getStorageType and isNumeric from Param down to params hierarchy.

Minor changes.

Improve param type induction.

Add TestSerializedClass? for testing new serialization.

Add info files gor GenePool? and Population.

Add standard.expt exemplary netfile.

Add type name field to PropertiesObject?.

Use PropertiesObject? for PropertiesAccess? instead of ordinary map.

Hide getFramsClass is several more places.

More unification accross FramsClass?, Access and Path.

Add ParamCollection?.

Simplify interface for getting params from FramsClass?, Access
or Path.

Make Access.call() interface variadic.

Add arguments(args) convenience wrapper around new Object[] {args}.

Upgrade to apache.commons.lang version 3.1

Minor improvement with Response constructors.

Develop proper result printing in ClientAtServer?.

Add experimentNetsave to PrimeExperiment?.

File:
1 edited

Legend:

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

    r101 r105  
    44import org.apache.logging.log4j.LogManager;
    55
    6 import com.framsticks.core.SideNoteKey;
    7 import com.framsticks.core.Tree;
    8 import com.framsticks.core.Node;
    9 import com.framsticks.core.Path;
    10 import static com.framsticks.core.TreeOperations.*;
    116import com.framsticks.gui.controls.ValueControl;
    127import com.framsticks.params.CompositeParam;
     
    1510
    1611import java.util.*;
     12import static com.framsticks.params.ParamsUtil.getParam;
     13import static com.framsticks.structure.TreeOperations.*;
    1714
    18 
    19 
    20 import com.framsticks.util.dispatching.FutureHandler;
     15import com.framsticks.structure.Node;
     16import com.framsticks.structure.Path;
     17import com.framsticks.structure.SideNoteKey;
     18import com.framsticks.structure.Tree;
     19import com.framsticks.util.dispatching.Future;
    2120
    2221/**
     
    114113
    115114                for (final Map.Entry<String, Object> e : userChanges.changes.entrySet()) {
    116                         set(path, getParam(path, e.getKey(), PrimitiveParam.class), e.getValue(), new FutureHandler<Integer>(frame) {
     115                        set(path, getParam(path, e.getKey(), PrimitiveParam.class), e.getValue(), new Future<Integer>(frame) {
    117116                                @Override
    118117                                protected void result(Integer flag) {
Note: See TracChangeset for help on using the changeset viewer.