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/test/java/com/framsticks/test/TestConfiguration.java

    r100 r105  
    1010import org.testng.annotations.*;
    1111
     12import com.framsticks.util.ExceptionHandler;
    1213import com.framsticks.util.FramsticksException;
    1314import com.framsticks.util.dispatching.Dispatcher;
    1415import com.framsticks.util.dispatching.Dispatching;
    1516import com.framsticks.util.dispatching.Dispatching.Waiter;
    16 import com.framsticks.util.dispatching.ExceptionHandler;
    17 import com.framsticks.util.dispatching.ExceptionResultHandler;
     17import com.framsticks.util.dispatching.ExceptionDispatcherHandler;
    1818
    1919// import static org.fest.assertions.Assertions.*;
     
    4646        }
    4747
    48         public ExceptionHandler createExceptionHandler() {
    49                 return new ExceptionHandler() {
     48        public ExceptionDispatcherHandler createExceptionHandler() {
     49                return new ExceptionDispatcherHandler() {
    5050                        @Override
    5151                        public boolean handle(Dispatcher<?> dispatcher, Throwable throwable) {
     
    9898        }
    9999
    100         public final ExceptionResultHandler failOnException = new ExceptionResultHandler() {
     100        public final ExceptionHandler failOnException = new ExceptionHandler() {
    101101                @Override
    102102                public void handle(FramsticksException e) {
Note: See TracChangeset for help on using the changeset viewer.