Ignore:
Timestamp:
09/23/13 18:54:07 (11 years ago)
Author:
psniegowski
Message:

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:
1 edited

Legend:

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

    r101 r107  
    55
    66import javax.swing.*;
     7import javax.swing.text.JTextComponent;
     8
    79import java.awt.*;
    810
    911@SuppressWarnings("serial")
    10 public class TextAreaControl extends TextControl {
     12public class TextAreaControl extends TextOnlyControl {
    1113
    1214        protected final JTextArea textArea;
     
    3941
    4042        @Override
    41         public void pushValueToUserInterfaceImpl(Object value) {
    42                 textArea.setText((String) value);
    43                 this.revalidate();
     43        protected JTextComponent getTextComponent() {
     44                return textArea;
    4445        }
    4546
    4647        @Override
    47         public Object pullValueFromUserInterface() {
    48                 return textArea.getText();
     48        public void pushValueToUserInterfaceImpl(Object value) {
     49                // getTextComponent().setText(getParam().serialize(value));
     50                super.pushValueToUserInterfaceImpl(value);
     51                this.revalidate();
    4952        }
    5053
Note: See TracChangeset for help on using the changeset viewer.