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/ParamCandidate.java

    r101 r102  
    2525import com.framsticks.params.annotations.ParamAnnotation;
    2626import com.framsticks.params.types.ProcedureParam;
     27// import com.framsticks.util.FramsticksException;
    2728
    2829public class ParamCandidate {
     
    477478                        Type rawType = p.getRawType();
    478479                        Type containedType = null;
    479                         //TODO make implementation here
    480480                        boolean map = false;
    481481                        StringBuilder b = new StringBuilder();
     
    490490                                containedType = p.getActualTypeArguments()[0];
    491491                                b.append("e");
     492                        } else {
     493                                return induceParamType(builder, rawType);
     494                                // throw new FramsticksException().msg("unknown raw type").arg("raw type", rawType);
    492495                        }
    493496                        if (!(containedType instanceof Class)) {
     
    503506                        dependantClasses.add(containedClass);
    504507                        b.append(FramsClassBuilder.getName(fca, containedClass));
    505                         //TODO parameterize this
    506508                        if (map) {
    507509                                b.append(" uid");
     
    516518                        Class<?> cl = (Class<?>) type;
    517519
    518                         // TODO: future support for enum
     520                        // this is draft implementation of future support for enum
    519521                        // if (cl.isEnum()) {
    520522                        //      Class<? extends Enum<?>> enumType = (Class<? extends Enum<?>>) cl;
Note: See TracChangeset for help on using the changeset viewer.