source: java/main/src/main/java/com/framsticks/params/types/ListParam.java @ 107

Last change on this file since 107 was 107, checked in by psniegowski, 11 years ago

HIGHLIGHTS:

  • add SimultorProviders? hierarchy
  • start Framsticks server over SSH
  • FJF compatible with Framsticks 4.0rc3
  • reading and writing of standard.expt
  • a proof-of-concept implementation of StandardExperiment?

CHANGELOG:
Optionally return FreeAccess? from registry.

Add SimulatorRange?.

StandardExperiment? with genotypes circulation.

Automate registration around StandardState?.

More improvements to StandardExperiment?.

Skeleton version of StandardExperiment?.

Test saving of StandardState?.

Standard experiment state is being loaded.

More development towards StandardState? reading.

Work on reading standard experiment state.

Add classes for standard experiment.

Update example standard.expt

Add FreeAccess? and FreeObject?.

Made compatible with version 4.0rc3

Change deserialization policy.

Improve SSH support.

Working running simulator over SSH.

Fix joining bug in Experiment.

Working version of SimulatorRunner?.

Add more SimulatorProviders?.

Working PrimeExperimentTest? with 4.0rc3

Add references to deserialization.

Add OpaqueObject? and it's serialization.

Add deserialization of dictionaries.

Partial implementation of deserialization.

Add more tests for deserialization.

Prepare tests for deserialization.

Add proper result to prime experiment test.

Minor fixes to simulators providers.

Draft version of SimulatorProvider?.

Add SimulatorProvider? interface.

File size: 427 bytes
Line 
1package com.framsticks.params.types;
2
3import com.framsticks.params.CompositeParam;
4import com.framsticks.params.ParamBuilder;
5
6import javax.annotation.concurrent.Immutable;
7
8/**
9 * @author Piotr Sniegowski
10 */
11@Immutable
12public abstract class ListParam extends CompositeParam {
13
14        public ListParam(ParamBuilder builder) {
15                super(builder);
16        }
17
18        // @Override
19        // public <T> String serialize(T value) {
20        //      return null;
21        // }
22
23}
Note: See TracBrowser for help on using the repository browser.