source: java/main/src/main/java/com/framsticks/model/f0/VisualHints.java @ 105

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

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 size: 854 bytes
Line 
1package com.framsticks.model.f0;
2
3/**
4 * The Class with VisualHints constants.
5 */
6public final class VisualHints {
7
8        /** don't draw class name label below the neuron. */
9        public static final int DONT_SHOW_CLASS = 2;
10
11        /** draw the neuron at the first part when attached to joint (default is in the middle). */
12        public static final int AT_FIRST_PART = 4;
13
14        /** draw the neuron at the second part when attached to joint (default is in the middle). */
15        public static final int AT_SECOND_PART = 8;
16
17        /** use effector color for this neuro unit. */
18        public static final int EFFECTOR_CLASS = 16;
19
20        /** use receptor color for this neuro unit. */
21        public static final int RECEPTOR_CLASS = 32;
22
23        /** The Constant V1_BEND_MUSCLE. */
24        public static final int V1_BEND_MUSCLE = 64;
25
26        /** The Constant V1_ROT_MUSCLE. */
27        public static final int V1_ROT_MUSCLE = 128;
28}
Note: See TracBrowser for help on using the repository browser.