Serialized Form


Package com.xj.anylogic.engine

Class com.xj.anylogic.engine.AbstractShapeGISMap extends Shape implements Serializable

serialVersionUID: -7232565985768320344L

Class com.xj.anylogic.engine.ActiveObject extends Utilities implements Serializable

serialVersionUID: -156736128385721803L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
no custom data
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

dynamicEvents

java.util.LinkedHashSet<E> dynamicEvents
Collection of active dynamic events - to be able to discard them when the active object is destroyed and to restore their owner when the active object is deserialized.

Class com.xj.anylogic.engine.ActiveObjectArrayList extends ActiveObjectList<E extends ActiveObject> implements Serializable

serialVersionUID: -2133625258338586328L

Serialized Fields

list

com.xj.anylogic.engine.ActiveObjectArrayList.AOList list

Class com.xj.anylogic.engine.ActiveObjectCollection extends java.lang.Object implements Serializable

serialVersionUID: 7760065713819349936L

Class com.xj.anylogic.engine.ActiveObjectLinkedHashSet extends ActiveObjectList<E extends ActiveObject> implements Serializable

serialVersionUID: 2842716364488022989L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

set

java.util.Set<E> set

Class com.xj.anylogic.engine.ActiveObjectList extends ActiveObjectCollection<E extends ActiveObject> implements Serializable

serialVersionUID: 5388207635624363682L

Class com.xj.anylogic.engine.Agent extends ActiveObject implements Serializable

serialVersionUID: 1992634843540845409L

Class com.xj.anylogic.engine.AgentContinuous extends Agent implements Serializable

serialVersionUID: 807353306778768137L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

x

double x

y

double y

movement

com.xj.anylogic.engine.AgentContinuous.Space2DMovement movement

Class com.xj.anylogic.engine.AgentContinuous2D extends AgentContinuous implements Serializable

serialVersionUID: -6898122175452511809L

Class com.xj.anylogic.engine.AgentContinuous3D extends AgentContinuous implements Serializable

serialVersionUID: -6734899824545507968L

Serialized Fields

z

double z

Class com.xj.anylogic.engine.AgentContinuousGIS extends AgentContinuous implements Serializable

serialVersionUID: 1962427400006501820L

Class com.xj.anylogic.engine.AgentDiscrete2D extends Agent implements Serializable

serialVersionUID: 70697082997741605L

Serialized Fields

r

int r

c

int c

Class com.xj.anylogic.engine.CustomDistribution extends java.lang.Object implements Serializable

serialVersionUID: 370375483283313803L

Serialized Fields

rng

java.util.Random rng

interpolationType

int interpolationType

values

double[] values

rates

double[] rates

sums

double[] sums

integral

double integral

Class com.xj.anylogic.engine.Dimension extends java.lang.Object implements Serializable

serialVersionUID: -3034467768764646182L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This method should not be called by user

Throws:
java.io.ObjectStreamException
Serialized Fields

packageName

java.lang.String packageName

name

java.lang.String name

Class com.xj.anylogic.engine.DynamicEvent extends EventOriginator implements Serializable

serialVersionUID: 9009157400532931438L

Class com.xj.anylogic.engine.Engine extends java.lang.Object implements Serializable

serialVersionUID: -157347758428603836L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
default output followed by experiment object
Throws:
java.io.IOException - in case of stream writing error

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This method should not be called by user

Throws:
java.io.ObjectStreamException
Serialized Fields

callExperimentOnFinish

boolean callExperimentOnFinish

realTimeMode

boolean realTimeMode

realTimeScale

double realTimeScale

startTime

double startTime

stopTime

double stopTime

startDate

java.util.Date startDate

zeroDate

java.util.Date zeroDate
The date corresponding to time=0, if any.
Used only in time-to-date and date-to-time conversions. Because operation
 (date - Engine.startDate) / Engine.timeUnit + Engine.startTime
looses precision (when Engine.startTime is quite big number), this zero-date allows us to use formula:
 (date - Engine.zeroDate) / Engine.timeUnit


timeUnit

long timeUnit

ATOL

double ATOL

RTOL

double RTOL

TTOL

double TTOL

HTOL

double HTOL

solverODE

int solverODE

solverNAE

int solverNAE

solverDAE

int solverDAE

state

int state

pause

boolean pause

finish

boolean finish

dontCallOnChange

boolean dontCallOnChange

root

ActiveObject root

runCount

int runCount

step

long step

modelType

int modelType

startTimeMillis

long startTimeMillis

beginTimeMillis

long beginTimeMillis

runTimeMillis

long runTimeMillis

time

double time

baseVT

double baseVT

baseRT

long baseRT

currentEventOriginator

EventOriginator currentEventOriginator

eventsSorted

com.xj.anylogic.engine.EventsSorted eventsSorted

executionControlEvent

com.xj.anylogic.engine.EventExecutionControl executionControlEvent
This link is used to destroy custom event or to cancel it when another one is scheduled


destroyList

java.util.ArrayList<E> destroyList
The list of objects marked as destroyed during the current step. The actual destruction is performed after the step is finished.


activeObjectsWithEquations

java.util.ArrayList<E> activeObjectsWithEquations
List of active objects with equations. AOs register themselves.


delayObjects

java.util.ArrayList<E> delayObjects
List of delays. AOs register delays themselves.


predicates

java.util.Set<E> predicates
List of conditions (predicates) to be checked while integrating


defaultGenerator

java.util.Random defaultGenerator
The default random number generator used by all probability distributions by default, i.e. if no particular generator is specified in the call to a probability distribution function.

Class com.xj.anylogic.engine.Environment extends java.lang.Object implements Serializable

serialVersionUID: 7254221147553231706L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

agentCollection

Environment.AgentCollection<T extends Agent> agentCollection

timeType

int timeType

tick

com.xj.anylogic.engine.Environment.EventTick tick

stepDuration

double stepDuration

width

double width

height

double height

networkType

int networkType

connectionsPerAgent

double connectionsPerAgent

scaleFreeM

int scaleFreeM

neighborLinkProbability

double neighborLinkProbability

layoutType

int layoutType

Class com.xj.anylogic.engine.Environment.AgentCollection extends java.util.AbstractCollection<T extends Agent> implements Serializable

serialVersionUID: 1779211459350415826L

Serialized Fields

mainlist

com.xj.anylogic.engine.internal.StableIterableArrayList<E> mainlist

Class com.xj.anylogic.engine.EnvironmentContinuous extends Environment<T extends AgentContinuous> implements Serializable

serialVersionUID: 5861010054496576406L

Serialized Fields

connectionRange

double connectionRange

Class com.xj.anylogic.engine.EnvironmentContinuous2D extends EnvironmentContinuous<AgentContinuous2D> implements Serializable

serialVersionUID: 2909965707337454967L

Class com.xj.anylogic.engine.EnvironmentContinuous3D extends EnvironmentContinuous<AgentContinuous3D> implements Serializable

serialVersionUID: 2909965707337454967L

Serialized Fields

zHeight

double zHeight

Class com.xj.anylogic.engine.EnvironmentContinuousGIS extends EnvironmentContinuous<AgentContinuousGIS> implements Serializable

serialVersionUID: 99493685254965271L

Serialized Fields

gisMap

AbstractShapeGISMap gisMap

Class com.xj.anylogic.engine.EnvironmentDiscrete2D extends Environment<AgentDiscrete2D> implements Serializable

serialVersionUID: -1214077132921161655L

Serialized Fields

cells

AgentDiscrete2D[][] cells
Stores where are the agents.
Should be synchronous with EnvironmentDiscrete2D.nFreeCells


nFreeCells

int nFreeCells
Stores number of free cells (not occupied by agents).
Should be synchronous with EnvironmentDiscrete2D.cells


neighborhoodType

int neighborhoodType

Class com.xj.anylogic.engine.Event extends EventOriginator implements Serializable

serialVersionUID: -1520506063614898539L

Class com.xj.anylogic.engine.EventCondition extends Event implements Serializable

serialVersionUID: 3737896961293832573L

Serialized Fields

monitoring

boolean monitoring

Class com.xj.anylogic.engine.EventOriginator extends java.lang.Object implements Serializable

serialVersionUID: 1202986965789539700L

Serialized Fields

eventEntry

com.xj.anylogic.engine.EventEntry eventEntry

Class com.xj.anylogic.engine.EventRate extends Event implements Serializable

serialVersionUID: -2986351354475002611L

Serialized Fields

rate

double rate
The last used rate. Is needed to skip unnecessary event re-scheduling in case the the rate does not change, but onChange() is called.

Class com.xj.anylogic.engine.EventTimeout extends Event implements Serializable

serialVersionUID: 9153502068480898776L

Serialized Fields

resumeTimeout

double resumeTimeout

Class com.xj.anylogic.engine.Experiment extends Utilities implements Serializable

serialVersionUID: -2331371218900966711L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

name

java.lang.String name

destroyed

boolean destroyed

snapshotFileName

java.lang.String snapshotFileName

commandLineArguments

java.lang.String[] commandLineArguments

startOrigin

int startOrigin
One of:

Class com.xj.anylogic.engine.ExperimentCompareRuns extends com.xj.anylogic.engine.ExperimentRunFast<ROOT extends ActiveObject> implements Serializable

serialVersionUID: -6688751739228434697L

Class com.xj.anylogic.engine.ExperimentCustom extends java.lang.Object implements Serializable

serialVersionUID: -311925110659092145L

Serialized Fields

commandLineArguments

java.lang.String[] commandLineArguments

startOrigin

int startOrigin
One of:

Class com.xj.anylogic.engine.ExperimentOptimization extends com.xj.anylogic.engine.ExperimentMultipleRuns<ROOT extends ActiveObject> implements Serializable

serialVersionUID: 1742924454996294018L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
no custom data
Throws:
java.io.IOException - in case of stream writing error

Class com.xj.anylogic.engine.ExperimentParamVariation extends com.xj.anylogic.engine.ExperimentMultipleRuns<ROOT extends ActiveObject> implements Serializable

serialVersionUID: 3597701752984577672L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

incompleteTasks

java.util.List<E> incompleteTasks
Synchronised list of incomplete tasks for parallel implementation - filled when user presses PAUSE button and there are incomplete iterations with replications.
Never null, for 'serial' mode is always empty.


maximumIterations

int maximumIterations
this field can only be used in getMaximumIterations!!!


iteration

int iteration
This variable is write-accessed only from 'perform'-thread


numberOfCompletedIterations

java.util.concurrent.atomic.AtomicInteger numberOfCompletedIterations

replicationForSerialMode

int replicationForSerialMode
used only in non-parallel mode


useReplications

boolean useReplications

fixedReplications

boolean fixedReplications
use fixed or variable number of replications


minimumReplications

int minimumReplications
(also used in fixed replications number mode)


maximumReplications

int maximumReplications
(also used in fixed replications number mode)


errorPercent

double errorPercent

confidenceLevel

int confidenceLevel

lastReplicationForSerialMode

boolean lastReplicationForSerialMode
used only in non-parallel mode


terminated

boolean terminated
this variable is set to true when experiment was stopped because of stop conditions (ExperimentParamVariation.evaluateStopConditions(ActiveObject)) satisfaction or because of error and can't be resumed


noMoreIterations

boolean noMoreIterations
this variable is set to true when experiment has no more iterations to execute (NB that in case of parallel execution, there may be pending replications of some current iterations).
This variable should be accessed from perform-thread only


replicationsConfidenceTestingStatisticsForSerialMode

StatisticsDiscrete replicationsConfidenceTestingStatisticsForSerialMode
This statistics is used for confidence check in the varied replications mode
Used only in non-parallel mode


rangeParameterValuesNumbers

int[] rangeParameterValuesNumbers
Cache for range parameter values numbers

Class com.xj.anylogic.engine.ExperimentSimulation extends Experiment<ROOT extends ActiveObject> implements Serializable

serialVersionUID: 734693718657533833L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

Class com.xj.anylogic.engine.HyperArray extends java.lang.Object implements Serializable

serialVersionUID: -78811125921911764L

Serialized Fields

dimensions

Dimension[] dimensions

multipliers

int[] multipliers

data

double[] data

Class com.xj.anylogic.engine.Point extends java.lang.Object implements Serializable

serialVersionUID: -4566503726441441352L

Serialized Fields

x

double x
The x coordinate of this Point.


y

double y
The y coordinate of this Point.


z

double z
The z coordinate of this Point.

Class com.xj.anylogic.engine.Port extends java.lang.Object implements Serializable

serialVersionUID: 6949707144945160129L

Serialized Fields

flatLinks

java.util.List<E> flatLinks

upLinks

java.util.List<E> upLinks

downLinks

java.util.List<E> downLinks

statechartLinks

java.util.List<E> statechartLinks

Class com.xj.anylogic.engine.Presentable extends java.lang.Object implements Serializable

serialVersionUID: 4139754851030496823L

Class com.xj.anylogic.engine.Schedule extends java.lang.Object implements Serializable

serialVersionUID: 8265392098248102883L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

calendarType

boolean calendarType
Indicates whether the schedule works with calendar (real, human-readable) dates or with timeouts.
The difference comes e.g. during day-light saving time switching: "1 Day" period will be always 24 hour in non-calendar type while for 'calendar' type it may be 23 or 25 hours.


period

long period
Period in milliseconds.


timeUnitInMillis

long timeUnitInMillis
Time unit of the schedule expressed in a number of milliseconds. One of:


calendarTimeUnit

int calendarTimeUnit
Time unit of the schedule expressed using Calendar constant. One of:


periodInTimeUnits

int periodInTimeUnits
Number of time units in the period. Equals (Schedule.period / Schedule.timeUnitInMillis)


baseSnapTo

long baseSnapTo
The absolute date which points to the start of some period. All schedule periods are cloned, started from the given time moment in both directions.


firstDOW

int firstDOW
First day of week


intMillisArgs

long[] intMillisArgs
Interval table arguments: milliseconds (from period start) of change events constituting intervals table
May be null if there is no intervals/events in the schedule (but there may be exceptions!) - in this case Schedule.intMillisValues[0] is set to the default value of the schedule.


intMillisValues

java.lang.Object[] intMillisValues
Interval table vales: values of change events constituting intervals table, indexing is the same as in Schedule.intMillisArgs.
In case of empty schedule (no intervals/events in the schedule, but there may be exceptions!) this array holds one object - the default value of the schedule.


exceptionStarts

long[] exceptionStarts
Non-annual exception starts (their number is Schedule.notAnnualExceptionsCount) followed by annual exceptions starts.
All annual exceptions are stored as dates with a year changed to the value of 2008 (some leap year) except the possible end-date of the last exceptions which may be equal 1st of Jan, 2009.


exceptionEnds

long[] exceptionEnds
Non-annual exception ends (their number is Schedule.notAnnualExceptionsCount) followed by annual exceptions ends.
All annual exceptions are stored as dates with a year changed to the value of 2008 (some leap year) except the possible end-date of the last exceptions which may be equal 1st of Jan, 2009.


joinFirstLastAnnualExceptions

boolean joinFirstLastAnnualExceptions
If true, the first and the last annual exceptions are really one interyear exception. It is guaranteed that in this case Schedule.exceptionStarts[Schedule.notAnnualExceptionsCount] == 2008.01.01 and Schedule.exceptionEnds[Schedule.exceptionEnds.length - 1] == 2009.01.01


exceptionValues

java.lang.Object[] exceptionValues
Non-annual exception values (their number is Schedule.notAnnualExceptionsCount) followed by annual exceptions values.


notAnnualExceptionsCount

int notAnnualExceptionsCount
Number of non-annual exceptions in the Schedule.exceptionStarts, Schedule.exceptionEnds, Schedule.exceptionValues arrays


calculatorSingle

com.xj.anylogic.engine.Schedule.Calculator calculatorSingle

Class com.xj.anylogic.engine.Statechart extends java.lang.Object implements Serializable

serialVersionUID: -1292165324460661780L

Serialized Fields

activeState

short activeState

activeTransitions

Transition[] activeTransitions

nActive

int nActive

queue

java.util.LinkedList<E> queue

queuetimestamp

double queuetimestamp

Class com.xj.anylogic.engine.TableFunction extends java.lang.Object implements Serializable

serialVersionUID: 1850888821115257512L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

interpolationType

int interpolationType

outOfRangeType

int outOfRangeType

outOfRangeDefaultValue

double outOfRangeDefaultValue

xpoints

double[] xpoints

ypoints

double[] ypoints

y2points

double[] y2points

approximationOrder

int approximationOrder

Class com.xj.anylogic.engine.Transition extends EventOriginator implements Serializable

serialVersionUID: 7359322031370285332L

Class com.xj.anylogic.engine.TransitionCondition extends Transition implements Serializable

serialVersionUID: -92831711682917406L

Class com.xj.anylogic.engine.TransitionMessage extends Transition implements Serializable

serialVersionUID: -3268846626063793546L

Serialized Fields

message

java.lang.Object message

intmessage

int intmessage

Class com.xj.anylogic.engine.TransitionRate extends Transition implements Serializable

serialVersionUID: 5829160005564839859L

Serialized Fields

rate

double rate
The last used rate. Is needed to skip unnecessary event re-scheduling in case the the rate does not change, but onChange() is called.

Class com.xj.anylogic.engine.TransitionTimeout extends Transition implements Serializable

serialVersionUID: -2672373213490006699L

Class com.xj.anylogic.engine.Utilities extends Presentable implements Serializable

serialVersionUID: 6314369142765963867L

Class com.xj.anylogic.engine.VariableDelay extends java.lang.Object implements Serializable

serialVersionUID: -7758956657883566283L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

scalarQueue

double[] scalarQueue

arrayQueue

HyperArray[] arrayQueue

materialPositions

java.util.BitSet materialPositions
true bits in this set mark positions of queue storage as having material (NB: the material queue may have MissingValue positions - these positions aren't added to input when queue length decreases)


nextQueueShrinkMinTime

double nextQueueShrinkMinTime
When delay time is variable and becomes less, queue array may be shrunk to conserve memory, but for performance needs it may not be shrunk more until this time


minQueueShrinkInterval

double minQueueShrinkInterval
When delay time is variable and becomes less, queue array may be shrunk to conserve memory, but for performance needs it may not be shrunk more often than specified by this field


readingIndex

int readingIndex
Index in the queue (VariableDelay.scalarQueue or VariableDelay.arrayQueue) which corresponds to the sample for reading at current time
Initially it is zero and the whole queue is filled with default values


nextCellWriteIndex

int nextCellWriteIndex
Index (position in array) for the next sample storing operation (which should occur at VariableDelay.nextCellWriteTime


nextCellWriteTime

double nextCellWriteTime
Time of next sample in the queue time-grid, for precision purpose it is calculated as VariableDelay.birthTime + VariableDelay.nextCellWriteTimeIndex * VariableDelay.HTOL
If 'fake' mode this is the time of current value


nextCellWriteTimeIndex

long nextCellWriteTimeIndex
The index of the VariableDelay.nextCellWriteTime
This field is used ONLY for VariableDelay.nextCellWriteTime calculation (to reduce numeric errors).
Semantical index is VariableDelay.nextCellWriteIndex


HTOL

double HTOL

htolToleranceToRejectTime

double htolToleranceToRejectTime
See Also:
VariableDelay.htolToleranceToAcceptPendingSample

htolToleranceToAcceptPendingSample

double htolToleranceToAcceptPendingSample
Because of possible numeric addition errors, there may be storeSample() call time pattern at the time moments {VariableDelay.nextCellWriteTime - delta}
This offset is needed to determine whether VariableDelay.pendingSampleTime is suitable (if any). This is when:

birthTime

double birthTime
The time Active object starts living (it may be dynamically created).


delayTime

double delayTime
NB: initially and after construction it is -1
After the first call of VariableDelay.storeSample(double) (which should be performed in the ActiveObject.create() method just after assignment of initial conditions), it gets non-negative value and hold non-negative


dimensions

Dimension[] dimensions

type

VariableDelay.Type type

pendingSampleTime

double pendingSampleTime

pendingSampleContainerArray

HyperArray pendingSampleContainerArray

pendingSampleContainerScalar

double pendingSampleContainerScalar

Package com.xj.anylogic.engine.analysis

Class com.xj.anylogic.engine.analysis.BarChart extends Chart1D implements Serializable

serialVersionUID: -4169997974951063449L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

min

double min

max

double max

sum

double sum

grid

com.xj.anylogic.engine.analysis.Grid grid

Class com.xj.anylogic.engine.analysis.Chart extends ShapeControl implements Serializable

serialVersionUID: 3486512920533731353L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

panel

com.xj.anylogic.engine.analysis.Chart.ChartPanel panel

chartArea

com.xj.anylogic.engine.analysis.Chart.ChartArea chartArea

legendScrollPane

javax.swing.JScrollPane legendScrollPane

legendPanel

com.xj.anylogic.engine.analysis.Chart.LegendPanel legendPanel

popupMenu

javax.swing.JPopupMenu popupMenu

fillColor

java.awt.Color fillColor

lineColor

java.awt.Color lineColor

properties

Chart.Properties properties

staticWidth

double staticWidth

staticHeight

double staticHeight

legendSize

int legendSize

picOffsetX

int picOffsetX

picOffsetY

int picOffsetY

picWidth

int picWidth

picHeight

int picHeight

items

java.util.List<E> items

titles

java.util.List<E> titles

selected

java.util.List<E> selected

Class com.xj.anylogic.engine.analysis.Chart.Properties extends java.lang.Object implements Serializable

serialVersionUID: 4386439355403282424L

Serialized Fields

picOffsetX

int picOffsetX

picOffsetY

int picOffsetY

picWidth

int picWidth

picHeight

int picHeight

legendPos

int legendPos

legendSize

int legendSize

picBackgroundColor

java.awt.Color picBackgroundColor

picBorderColor

java.awt.Color picBorderColor

legendTextColor

java.awt.Color legendTextColor

barDirection

int barDirection

relativeBarWidth

double relativeBarWidth

gridPositionX

int gridPositionX

gridPositionY

int gridPositionY

gridLineColor

java.awt.Color gridLineColor

gridTextColor

java.awt.Color gridTextColor

scaleTypeX

int scaleTypeX

minimumX

double minimumX

maximumX

double maximumX

scaleTypeY

int scaleTypeY

minimumY

double minimumY

maximumY

double maximumY

showPDF

boolean showPDF

showCDF

boolean showCDF

showMean

boolean showMean

drawEnvelopes

boolean drawEnvelopes

dateFormatPattern

java.lang.String dateFormatPattern

Class com.xj.anylogic.engine.analysis.Chart1D extends Chart implements Serializable

serialVersionUID: 4316363062680510302L

Serialized Fields

dataItems

java.util.List<E> dataItems

colors

java.util.List<E> colors

Class com.xj.anylogic.engine.analysis.Chart1DSum extends Chart1D implements Serializable

serialVersionUID: 779053203586275851L

Serialized Fields

sum

double sum

fractions

java.util.List<E> fractions

Class com.xj.anylogic.engine.analysis.Chart2D extends Chart implements Serializable

serialVersionUID: -7470567390314284417L

Serialized Fields

dataSets

java.util.List<E> dataSets

Class com.xj.anylogic.engine.analysis.Chart2DPlot extends Chart2D implements Serializable

serialVersionUID: 3638272481138477394L

Serialized Fields

appearances

java.util.List<E> appearances

Class com.xj.anylogic.engine.analysis.Chart2DPlot.Appearance extends com.xj.anylogic.engine.internal.CSVProperties implements Serializable

serialVersionUID: 7443426896864212118L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
the line width float number is emitted
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

color

java.awt.Color color

drawLine

boolean drawLine

interpolationType

int interpolationType

pointStyle

int pointStyle

Class com.xj.anylogic.engine.analysis.ChartItem extends com.xj.anylogic.engine.internal.CSVDataProvider implements Serializable

serialVersionUID: -6143680076835645392L

Serialized Fields

version

long version

Class com.xj.anylogic.engine.analysis.DataItem extends ChartItem implements Serializable

serialVersionUID: 3218494690348778002L

Serialized Fields

value

double value

Class com.xj.anylogic.engine.analysis.DataSet extends ChartItem implements Serializable

serialVersionUID: 879409527620309777L

Serialized Fields

capacity

int capacity

allowDuplicateX

boolean allowDuplicateX

allowDuplicateY

boolean allowDuplicateY

datax

double[] datax

datay

double[] datay

icurrent

int icurrent

datafull

boolean datafull

xmin

double xmin

xmax

double xmax

ymin

double ymin

ymax

double ymax

updater

DataUpdater updater

Class com.xj.anylogic.engine.analysis.DataUpdater extends java.lang.Object implements Serializable

serialVersionUID: 2877190654801130229L

Class com.xj.anylogic.engine.analysis.Histogram extends Chart implements Serializable

serialVersionUID: 7136519752178127449L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

data

java.util.List<E> data

appearances

java.util.List<E> appearances

minX

double minX

maxX

double maxX

maxY

double maxY

gridX

com.xj.anylogic.engine.analysis.Grid gridX

gridY

com.xj.anylogic.engine.analysis.Grid gridY

Class com.xj.anylogic.engine.analysis.Histogram.Appearance extends com.xj.anylogic.engine.internal.CSVProperties implements Serializable

serialVersionUID: 1284306480267868680L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
the line width float number is emitted
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

colorLowPercent

java.awt.Color colorLowPercent

colorHighPercent

java.awt.Color colorHighPercent

colorPDF

java.awt.Color colorPDF

colorCDF

java.awt.Color colorCDF

colorMean

java.awt.Color colorMean

Class com.xj.anylogic.engine.analysis.Histogram2D extends Chart implements Serializable

serialVersionUID: 1021799467860292723L

Serialized Fields

data

java.util.List<E> data

appearances

java.util.List<E> appearances

minX

double minX

maxX

double maxX

minY

double minY

maxY

double maxY

gridX

com.xj.anylogic.engine.analysis.Grid gridX

gridY

com.xj.anylogic.engine.analysis.Grid gridY

Class com.xj.anylogic.engine.analysis.Histogram2D.Appearance extends java.lang.Object implements Serializable

serialVersionUID: 8348281538379876451L

Serialized Fields

color

java.awt.Color color

colors

java.awt.Color[] colors

Class com.xj.anylogic.engine.analysis.Histogram2DData extends ChartItem implements Serializable

serialVersionUID: -788586858355134292L

Serialized Fields

nXIntervals

int nXIntervals

nYIntervals

int nYIntervals

xmin

double xmin

xmax

double xmax

ymin

double ymin

ymax

double ymax

envelopes

double[] envelopes

count

int[] count

pdf

int[][] pdf

cdf

int[][] cdf

pdfmax

int[] pdfmax

pdfoutlow

int[] pdfoutlow

pdfouthigh

int[] pdfouthigh

cdfoutlow

int[] cdfoutlow

cdfouthigh

int[] cdfouthigh

updater

DataUpdater updater

Class com.xj.anylogic.engine.analysis.HistogramData extends ChartItem implements Serializable

serialVersionUID: -3476562413821055783L

Serialized Fields

calcPercentiles

boolean calcPercentiles

lowPercent

double lowPercent

highPercent

double highPercent

calcCDF

boolean calcCDF

nIntervals

int nIntervals

pdf

int[] pdf

cdf

int[] cdf

intervalWidth

double intervalWidth

ilowpercent

int ilowpercent

ihighpercent

int ihighpercent

pdfmax

int pdfmax

statistics

StatisticsDiscrete statistics

updater

DataUpdater updater

Class com.xj.anylogic.engine.analysis.HistogramSimpleData extends HistogramData implements Serializable

serialVersionUID: 7264565415984050893L

Serialized Fields

min

double min

max

double max

pdfoutlow

int pdfoutlow

pdfouthigh

int pdfouthigh

cdfoutlow

int cdfoutlow

cdfouthigh

int cdfouthigh

Class com.xj.anylogic.engine.analysis.HistogramSmartData extends HistogramData implements Serializable

serialVersionUID: 2312395612428666557L

Serialized Fields

initialIntervalWidth

double initialIntervalWidth

low

double low

ilowfilled

int ilowfilled

nfilled

int nfilled

Class com.xj.anylogic.engine.analysis.PieChart extends Chart1DSum implements Serializable

serialVersionUID: 2375309794965686239L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

Class com.xj.anylogic.engine.analysis.Plot extends Chart2DPlot implements Serializable

serialVersionUID: -3081404804951469020L

Serialized Fields

minX

double minX

maxX

double maxX

minY

double minY

maxY

double maxY

gridX

com.xj.anylogic.engine.analysis.Grid gridX

gridY

com.xj.anylogic.engine.analysis.Grid gridY

Class com.xj.anylogic.engine.analysis.StackChart extends Chart1DSum implements Serializable

serialVersionUID: -3894497970184958190L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

grid

com.xj.anylogic.engine.analysis.Grid grid

Class com.xj.anylogic.engine.analysis.StatisticsContinuous extends com.xj.anylogic.engine.internal.CSVDataProvider implements Serializable

serialVersionUID: 226695909222961877L

Serialized Fields

count

int count

min

double min

max

double max

lastValue

double lastValue

timeLast

double timeLast

timeStart

double timeStart

integral

double integral

integralSquares

double integralSquares

updater

DataUpdater updater

Class com.xj.anylogic.engine.analysis.StatisticsDiscrete extends com.xj.anylogic.engine.internal.CSVDataProvider implements Serializable

serialVersionUID: 952432677804061163L

Serialized Fields

count

int count

min

double min

max

double max

sum

double sum

sumSquares

double sumSquares

updater

DataUpdater updater

Class com.xj.anylogic.engine.analysis.TimeColorChart extends Chart2D implements Serializable

serialVersionUID: -1945226205240078170L

Serialized Fields

minT

double minT

gridT

com.xj.anylogic.engine.analysis.Grid gridT

colorMap

TimeColorChart.ColorMap colorMap

Class com.xj.anylogic.engine.analysis.TimeColorChart.ColorMap extends java.lang.Object implements Serializable

serialVersionUID: -2279736616773309803L

Class com.xj.anylogic.engine.analysis.TimePlot extends Chart2DPlot implements Serializable

serialVersionUID: -5064208791699955583L

Serialized Fields

minY

double minY

maxY

double maxY

minT

double minT

gridT

com.xj.anylogic.engine.analysis.Grid gridT

gridY

com.xj.anylogic.engine.analysis.Grid gridY

Class com.xj.anylogic.engine.analysis.TimeStackChart extends Chart2D implements Serializable

serialVersionUID: -2225974088372403325L

Serialized Fields

maxY

double maxY

minT

double minT

gridT

com.xj.anylogic.engine.analysis.Grid gridT

gridY

com.xj.anylogic.engine.analysis.Grid gridY

colors

java.util.List<E> colors

xquad

int[] xquad

yquad

int[] yquad

Package com.xj.anylogic.engine.connectivity

Class com.xj.anylogic.engine.connectivity.Database extends com.xj.anylogic.engine.connectivity.ConnectivityBase implements Serializable

serialVersionUID: 7583074421627736420L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

jdbcDriver

java.lang.String jdbcDriver

connectionURL

java.lang.String connectionURL

connectionInfo

java.util.Properties connectionInfo

registeredAccessors

java.util.List<E> registeredAccessors

bracketOpen

char bracketOpen
Used for quoting table/column names in the queries


bracketClose

char bracketClose
Used for quoting table/column names in the queries

Class com.xj.anylogic.engine.connectivity.ExcelFile extends java.lang.Object implements Serializable

serialVersionUID: -6295880442986746704L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
no custom data
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

fileName

java.lang.String fileName

patternSRC

java.util.regex.Pattern patternSRC

fileState

int fileState

Class com.xj.anylogic.engine.connectivity.Insert extends com.xj.anylogic.engine.connectivity.DatabaseAccessor implements Serializable

serialVersionUID: -8737392276062547650L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
the number of columns in this insert (i.e. the length of Insert.values array)
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

query

java.lang.String query

valueTexts

java.lang.String[] valueTexts

Class com.xj.anylogic.engine.connectivity.KeyValueTable extends com.xj.anylogic.engine.connectivity.DatabaseAccessor implements Serializable

serialVersionUID: 2334475410314343522L

Serialized Fields

tableName

java.lang.String tableName

keyColumn

java.lang.String keyColumn

valueColumn

java.lang.String valueColumn

Class com.xj.anylogic.engine.connectivity.Query extends com.xj.anylogic.engine.connectivity.DatabaseAccessor implements Serializable

serialVersionUID: 2567065370794191010L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

queryText

java.lang.String queryText

mappings

java.lang.String[][] mappings

Class com.xj.anylogic.engine.connectivity.TextFile extends java.lang.Object implements Serializable

serialVersionUID: -4995744404554921461L

Serialized Fields

mode

int mode

file

java.io.File file
It is always (file != null) != (url != null)


url

java.net.URL url
It is always (file != null) != (url != null)


separatorsForReading

char[] separatorsForReading

ignoreNLSeparator

boolean ignoreNLSeparator

ignoreSpaceSeparator

boolean ignoreSpaceSeparator

charsetName

java.lang.String charsetName

packagePrefix

java.lang.String packagePrefix

Class com.xj.anylogic.engine.connectivity.Update extends com.xj.anylogic.engine.connectivity.DatabaseAccessor implements Serializable

serialVersionUID: -3689492234362554127L

Serialized Fields

queries

java.lang.String[] queries

keyValues

java.lang.Object[] keyValues

updateValues

java.lang.Object[][] updateValues

Package com.xj.anylogic.engine.graph

Class com.xj.anylogic.engine.graph.Edge extends AbstractGraphNode<IGraphNodeInfo> implements Serializable

serialVersionUID: 1L

Serialized Fields

graph

Graph graph

source

Vertex source

target

Vertex target

incidents

java.util.Set<E> incidents

Class com.xj.anylogic.engine.graph.Graph extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

edges

java.util.Set<E> edges

vertices

java.util.Set<E> vertices

Class com.xj.anylogic.engine.graph.GraphPath extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

graph

Graph graph

sourceVertex

Vertex sourceVertex

targetVertex

Vertex targetVertex

vertices

java.util.List<E> vertices

edges

java.util.List<E> edges

Class com.xj.anylogic.engine.graph.Vertex extends AbstractGraphNode<IGraphNodeInfo> implements Serializable

serialVersionUID: 1L

Serialized Fields

graph

Graph graph

internalEdges

java.util.Set<E> internalEdges

externalEdges

java.util.Set<E> externalEdges

incidents

java.util.Set<E> incidents

Package com.xj.anylogic.engine.graph.algorithms.impl

Class com.xj.anylogic.engine.graph.algorithms.impl.EdgeGeometryInfoImpl extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

edge

Edge edge

sourceX

double sourceX

sourceY

double sourceY

targetX

double targetX

targetY

double targetY

length

double length

Class com.xj.anylogic.engine.graph.algorithms.impl.VertexGeometryInfoImpl extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

vertex

Vertex vertex

x

double x

y

double y

Package com.xj.anylogic.engine.graph.algorithms.triangulation

Class com.xj.anylogic.engine.graph.algorithms.triangulation.Triangle extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

triangulation

Triangulation triangulation

vertices

java.util.Set<E> vertices

edges

java.util.Set<E> edges

incidents

java.util.Set<E> incidents

Class com.xj.anylogic.engine.graph.algorithms.triangulation.Triangulation extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

graph

Graph graph

triangulationInfoFactory

ITriangulationInfoFactory triangulationInfoFactory

triangles

java.util.Set<E> triangles

Package com.xj.anylogic.engine.graph.algorithms.triangulation.impl

Class com.xj.anylogic.engine.graph.algorithms.triangulation.impl.EdgeTriangulationInfoImpl extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

edge

Edge edge

triangles

java.util.Set<E> triangles

Class com.xj.anylogic.engine.graph.algorithms.triangulation.impl.VertexTriangulationInfoImpl extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

vertex

Vertex vertex

triangles

java.util.Set<E> triangles

Package com.xj.anylogic.engine.presentation

Class com.xj.anylogic.engine.presentation.Camera3D extends com.xj.anylogic.engine.presentation.Pure3DObject implements Serializable

serialVersionUID: -8376002464674787206L

Serialized Fields

x

double x

y

double y

z

double z

rotationX

double rotationX

rotationZ

double rotationZ

Class com.xj.anylogic.engine.presentation.Configuration3D extends java.lang.Object implements Serializable

serialVersionUID: -58493464655540774L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

gridColor

java.awt.Color gridColor

backgroundColor

java.awt.Color backgroundColor

gridSize

float gridSize

owner

ShapeTopLevelPresentationGroup owner

Class com.xj.anylogic.engine.presentation.Light3D extends com.xj.anylogic.engine.presentation.Pure3DObject implements Serializable

serialVersionUID: -5059165224372700431L

Serialized Fields

diffuseColor

java.awt.Color diffuseColor

specularColor

java.awt.Color specularColor

ambientColor

java.awt.Color ambientColor

global

boolean global

enabled

boolean enabled

Class com.xj.anylogic.engine.presentation.Light3DAmbient extends Light3D implements Serializable

serialVersionUID: -634412677447178062L

Class com.xj.anylogic.engine.presentation.Light3DDirectional extends Light3D implements Serializable

serialVersionUID: -634412677447178062L

Serialized Fields

angleZ

float angleZ
Light direction


angleX

float angleX
Light direction

Class com.xj.anylogic.engine.presentation.Light3DPoint extends Light3D implements Serializable

serialVersionUID: -634412677447178062L

Serialized Fields

x

float x
Position


y

float y
Position


z

float z
Position


constantAttenuation

float constantAttenuation
The constant attentuation factor


linearAttenuation

float linearAttenuation
The linear attentuation factor


quadraticAttenuation

float quadraticAttenuation
The quadratic attentuation factor

Class com.xj.anylogic.engine.presentation.Light3DSpot extends Light3D implements Serializable

serialVersionUID: -634412677447178062L

Serialized Fields

x

float x
Position


y

float y
Position


z

float z
Position


constantAttenuation

float constantAttenuation
The constant attentuation factor


linearAttenuation

float linearAttenuation
The linear attentuation factor


quadraticAttenuation

float quadraticAttenuation
The quadratic attentuation factor


angleZ

float angleZ
Light direction


angleX

float angleX
Light direction


cutOffAngle

float cutOffAngle
Cut-off angle for the maximum extent of the spotlight in degrees


dropOffRate

float dropOffRate
drop-off rate for the spotlight from the center to cutoffAngle

Class com.xj.anylogic.engine.presentation.Panel extends javax.swing.JPanel implements Serializable

serialVersionUID: 8087775592426778010L

Serialized Fields

world3D

com.xj.anylogic.engine.internal.presentation.al3d.World3D world3D
This variable is accessed only from Panel.FrameManagerThread


world3DTimeScale

float world3DTimeScale
This variable is accessed only from Panel.FrameManagerThread


forceDisableShaders

boolean forceDisableShaders

showPopupOnMousePressed

javax.swing.Timer showPopupOnMousePressed
If Utils.checkPopupOnMousePress is true then popup condition is checked in mousePressed and popup menu is shown after some timeout - using Timer object, which checks this reference (if this reference is null then timer has been interrupted)


presentation

Presentation presentation

presentable

Presentable presentable

animationHints

int animationHints

bufferedImageScreen

java.awt.image.BufferedImage bufferedImageScreen

bufferedImageDraw

java.awt.image.BufferedImage bufferedImageDraw

backgroundImage

java.awt.image.BufferedImage backgroundImage

zoom

double zoom

offsetX

double offsetX

offsetY

double offsetY

lastMousePoint

java.awt.Point lastMousePoint

frameManager

com.xj.anylogic.engine.presentation.Panel.FrameManagerThread frameManager

frameManagerMutex

java.lang.Object frameManagerMutex

disablePaintChildren

boolean disablePaintChildren
If true, then panel doesn't paint its children.
This field is set to true during snapshot loading/saving operations as a fix for Swing UI problem (see also bug #5952)


panningEnabled

boolean panningEnabled

popupMenu

javax.swing.JPopupMenu popupMenu

itemRunPause

com.xj.anylogic.engine.presentation.Presentation.MenuItem itemRunPause

itemStop

com.xj.anylogic.engine.presentation.Presentation.MenuItem itemStop

itemVirtual

com.xj.anylogic.engine.presentation.Presentation.CheckBoxMenuItem itemVirtual

itemLevelUp

com.xj.anylogic.engine.presentation.Presentation.MenuItem itemLevelUp

itemFullSceen

com.xj.anylogic.engine.presentation.Presentation.CheckBoxMenuItem itemFullSceen

itemHome

com.xj.anylogic.engine.presentation.Presentation.MenuItem itemHome

controlManager

ShapeControlManager controlManager

addRemoveControlsAction

java.lang.Runnable addRemoveControlsAction
An action that runs addRemoveControls method of the control manager.


imageCache

ImageCache imageCache

inspectStorage

java.util.List<E> inspectStorage

internals

com.xj.anylogic.engine.internal.PanelInternals internals
This field shouldn't be accessed by user
is public due to technical reasons

Class com.xj.anylogic.engine.presentation.ReplicatedShape extends java.lang.Object implements Serializable

serialVersionUID: -647106139538557935L

Serialized Fields

clickHandled

boolean clickHandled
Is set by the most recent ReplicatedShape.onClickAt(double, double, boolean) method call.
Unlike the result of that method, this field is true even if user hasn't selected to stop further click processing


shapes

java.util.ArrayList<E> shapes

Class com.xj.anylogic.engine.presentation.Shape extends java.lang.Object implements Serializable

serialVersionUID: -4238647246355254248L

Serialized Fields

clickHandled

boolean clickHandled
Is set by the most recent Shape.onClickAt(double, double, boolean) method call.
Unlike the result of that method, this field is true even if user hasn't selected to stop further click processing


visible

boolean visible

ispublic

boolean ispublic

x

double x

y

double y

rotation

double rotation

scalex

double scalex

scaley

double scaley

Class com.xj.anylogic.engine.presentation.Shape3DArc extends ShapeArc implements Serializable

serialVersionUID: 7041081358078139043L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DArcSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DGroup extends ShapeGroup implements Serializable

serialVersionUID: -1403451276075003315L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DGroupSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DImage extends ShapeImage implements Serializable

serialVersionUID: 7041081358078139043L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DImageSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DLine extends ShapeLine implements Serializable

serialVersionUID: 1474417084060224451L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DLineSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DObject extends Shape implements Serializable

serialVersionUID: 8151170622059600694L

Serialized Fields

packagePrefix

java.lang.String packagePrefix

fileName

java.lang.String fileName

imageFileName

java.lang.String imageFileName

topLeftX

double topLeftX
The x coordinate of the top-left corner of XY-projection object in local object coordinates


topLeftY

double topLeftY
The y coordinate of the top-left corner of XY-projection object in local object coordinates


width

double width
The width of the XY-projection of object in local object coordinates


height

double height
The height of the XY-projection of object in local object coordinates


baseScale

double baseScale
The base scale which is used in the XY-projection image file


s3d

com.xj.anylogic.engine.presentation.Shape3DObjectSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DOval extends ShapeOval implements Serializable

serialVersionUID: 7041081358078139043L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DOvalSupport<T extends ShapeOval & com.xj.anylogic.engine.internal.presentation.WorldObject3D_xjal> s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DPhantom extends Shape implements Serializable

serialVersionUID: 8618579946916385176L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DPhantomSupport s3d
3D support


reference

Shape reference
The shape this phantom shape references to

Class com.xj.anylogic.engine.presentation.Shape3DPolyLine extends ShapePolyLine implements Serializable

serialVersionUID: -1995614624690866186L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DMultiplePointsSupport<T extends ShapeMultiplePoints & com.xj.anylogic.engine.internal.presentation.WorldObject3D_xjal> s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DRectangle extends ShapeRectangle implements Serializable

serialVersionUID: 7041081358078139043L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DRectangleSupport<T extends ShapeRectangle & com.xj.anylogic.engine.internal.presentation.WorldObject3D_xjal> s3d
3D support

Class com.xj.anylogic.engine.presentation.Shape3DText extends ShapeText implements Serializable

serialVersionUID: -2549737137152982693L

Serialized Fields

s3d

com.xj.anylogic.engine.presentation.Shape3DTextSupport s3d
3D support

Class com.xj.anylogic.engine.presentation.ShapeArc extends ShapeOval implements Serializable

serialVersionUID: 5572144571178867357L

Serialized Fields

angleStart

double angleStart

angle

double angle

Class com.xj.anylogic.engine.presentation.ShapeButton extends ShapeControl implements Serializable

serialVersionUID: 8471526751261391566L

Serialized Fields

jbutton

javax.swing.JButton jbutton

Class com.xj.anylogic.engine.presentation.ShapeCAD extends Shape implements Serializable

serialVersionUID: 7524622851694713382L

Serialized Fields

width

double width

height

double height

packagePrefix

java.lang.String packagePrefix

filename

java.lang.String filename

id

int id

backgroundColor

java.awt.Color backgroundColor

layerNames

java.lang.String[] layerNames

layerIndexes

java.util.Map<K,V> layerIndexes

layersVisibility

boolean[] layersVisibility

customLayerColors

java.awt.Color[] customLayerColors

drawingAttributes

int drawingAttributes

needsRedraw

boolean needsRedraw

Class com.xj.anylogic.engine.presentation.ShapeCheckBox extends ShapeControl implements Serializable

serialVersionUID: -169005508825031116L

Serialized Fields

value

boolean value
The current state of the check box (true means selected) that can be accessed in the overridden action() method.
Use ShapeCheckBox.isSelected() to obtain the current check box state from other places


jcheckbox

javax.swing.JCheckBox jcheckbox

Class com.xj.anylogic.engine.presentation.ShapeComboBox extends ShapeControl implements Serializable

serialVersionUID: 2861831380777839301L

Serialized Fields

value

java.lang.String value
The currently selected item of the combo box that can be accessed in the overridden action() method.
Use ShapeComboBox.getValue() to obtain the currently selected item from other places


jcombobox

javax.swing.JComboBox jcombobox

valueType

int valueType
The type of the value edited by the combo box


valueInternal

java.lang.String valueInternal
State variable 'value' needed for rollbacks in case when illegal value is entered
Note, that ShapeComboBox.value field isn't used because it is public


texts

java.lang.String[] texts

Class com.xj.anylogic.engine.presentation.ShapeControl extends Shape implements Serializable

serialVersionUID: -6664736475155082359L

Serialized Fields

id

int id

index

int index

width

double width

height

double height

Class com.xj.anylogic.engine.presentation.ShapeCurve extends ShapePolyLine implements Serializable

serialVersionUID: 5801072446732149500L

Serialized Fields

manualControlPoints

boolean manualControlPoints

Class com.xj.anylogic.engine.presentation.ShapeEmbeddedObjectPresentation extends Shape implements Serializable

serialVersionUID: -406130619750328026L

Serialized Fields

embeddedObject

ActiveObject embeddedObject

s3d

com.xj.anylogic.engine.presentation.Shape3DSupport<T extends Shape & com.xj.anylogic.engine.internal.presentation.WorldObject3D_xjal> s3d
3D support


showIn3D

boolean showIn3D
Should this shape draw 3D part of embedded object presentation or not

Class com.xj.anylogic.engine.presentation.ShapeFileChooser extends ShapeControl implements Serializable

serialVersionUID: -308716378090717778L

Serialized Fields

title

java.lang.String title

type

int type

fileNameFilters

java.lang.String[][] fileNameFilters

value

java.lang.String value
Returns the currently selected file name (or empty string if no file selected) that can be accessed in the overridden action() method.
Use ShapeFileChooser.getValue() to obtain the currently selected file name from other places


jtextfield

javax.swing.JTextField jtextfield

jbutton

javax.swing.JButton jbutton

jpanel

javax.swing.JPanel jpanel

Class com.xj.anylogic.engine.presentation.ShapeGISMap extends AbstractShapeGISMap implements Serializable

serialVersionUID: 8850502783383997658L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

packagePrefix

java.lang.String packagePrefix

width

double width

height

double height

usedScaleX

double usedScaleX

usedScaleY

double usedScaleY

centerLongitude

double centerLongitude

centerLatitude

double centerLatitude

mapScale

double mapScale

mapBorderColor

java.awt.Color mapBorderColor

mapBackgroundColor

java.awt.Color mapBackgroundColor

layers

ShapeGISMap.Layer[] layers

Class com.xj.anylogic.engine.presentation.ShapeGISMap.Layer extends java.lang.Object implements Serializable

serialVersionUID: -7736077865162188752L

Serialized Fields

shapeFileName

java.lang.String shapeFileName

dbfFileName

java.lang.String dbfFileName

lineColor

java.awt.Color lineColor

fillColor

java.awt.Color fillColor

objectNameColumnIndex

int objectNameColumnIndex

Class com.xj.anylogic.engine.presentation.ShapeGroup extends Shape implements Serializable

serialVersionUID: -7823786006829427094L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

shapes

java.util.ArrayList<E> shapes

Class com.xj.anylogic.engine.presentation.ShapeImage extends Shape implements Serializable

serialVersionUID: -1448395744671401944L

Serialized Fields

packagePrefix

java.lang.String packagePrefix

filenames

java.util.ArrayList<E> filenames

width

double width

height

double height

index

int index

Class com.xj.anylogic.engine.presentation.ShapeLine extends Shape implements Serializable

serialVersionUID: 1474417084060224451L

Serialized Fields

color

java.lang.Object color

dx

double dx

dy

double dy

width

float width

style

int style

Class com.xj.anylogic.engine.presentation.ShapeLineFill extends Shape implements Serializable

serialVersionUID: 3488565140381385962L

Serialized Fields

lineColor

java.lang.Object lineColor

fillColor

java.lang.Object fillColor

lineWidth

float lineWidth

lineStyle

int lineStyle

Class com.xj.anylogic.engine.presentation.ShapeListBox extends ShapeControl implements Serializable

serialVersionUID: -4899073828843781821L

Serialized Fields

value

java.lang.String value
The currently selected item of the list box (or first item of multiselection) that can be accessed in the overridden action() method.
Use ShapeListBox.getValue() to obtain the currently selected item from other places


values

java.lang.String[] values
The currently selected items of the list box (in the multiple-selection mode) that can be accessed in the overridden action() method.
Use ShapeListBox.getValues() to obtain the currently selected items from other places


texts

java.lang.String[] texts

jlistbox

javax.swing.JList jlistbox

jscrollpane

javax.swing.JScrollPane jscrollpane

Class com.xj.anylogic.engine.presentation.ShapeMultiplePoints extends ShapeLineFill implements Serializable

serialVersionUID: 1898241107462153550L

Serialized Fields

npoints

int npoints

dx

double[] dx

dy

double[] dy

closed

boolean closed

Class com.xj.anylogic.engine.presentation.ShapeOval extends ShapeLineFill implements Serializable

serialVersionUID: -5229880724546087559L

Serialized Fields

radiusX

double radiusX

radiusY

double radiusY

Class com.xj.anylogic.engine.presentation.ShapePixel extends Shape implements Serializable

serialVersionUID: 50219250939030889L

Serialized Fields

color

java.awt.Color color

Class com.xj.anylogic.engine.presentation.ShapePolyLine extends ShapeMultiplePoints implements Serializable

serialVersionUID: 8128094320579191353L

Class com.xj.anylogic.engine.presentation.ShapeProgressBar extends ShapeControl implements Serializable

serialVersionUID: -5011873141082970311L

Serialized Fields

jProgressBar

javax.swing.JProgressBar jProgressBar

min

double min

max

double max

ticks

int ticks

precision

int precision

Class com.xj.anylogic.engine.presentation.ShapeRadioButtonGroup extends ShapeControl implements Serializable

serialVersionUID: 810861226341955834L

Serialized Fields

value

int value
The currently selected radio button (-1 if none) that can be accessed in the overridden action() method.
Use ShapeRadioButtonGroup.getValue() to obtain the currently selected radio button from other places.


jpanel

javax.swing.JPanel jpanel

group

javax.swing.ButtonGroup group

texts

java.lang.String[] texts

Class com.xj.anylogic.engine.presentation.ShapeRectangle extends ShapeLineFill implements Serializable

serialVersionUID: 273402989619174572L

Serialized Fields

width

double width

height

double height

Class com.xj.anylogic.engine.presentation.ShapeRoundedRectangle extends ShapeRectangle implements Serializable

serialVersionUID: 4394714541615853260L

Serialized Fields

radius

double radius

Class com.xj.anylogic.engine.presentation.ShapeSlider extends ShapeControl implements Serializable

serialVersionUID: 9158151635131743046L

Serialized Fields

value

double value
The current value of the slider that can be accessed in the overridden action() method.
Use ShapeSlider.getValue() to obtain the current slider value from other places


jslider

javax.swing.JSlider jslider

valueType

int valueType
The type of the value edited by the slider


min

double min

max

double max

ticks

int ticks

precision

int precision

Class com.xj.anylogic.engine.presentation.ShapeText extends Shape implements Serializable

serialVersionUID: 7806862782437521330L

Serialized Fields

color

java.awt.Color color

text

java.lang.String text

font

java.awt.Font font

alignment

int alignment

Class com.xj.anylogic.engine.presentation.ShapeTextField extends ShapeControl implements Serializable

serialVersionUID: 8846118861755981113L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem
Serialized Fields

value

java.lang.String value
The current text in the text field that can be accessed in the overridden action() method.
Use ShapeTextField.getText() to obtain the current text from other places.


jtextfield

javax.swing.JTextField jtextfield

valueType

int valueType
The type of the value edited by the text field


valueInternal

java.lang.String valueInternal
State variable 'value' needed for rollbacks in case when illegal value is entered
Note, that ShapeTextField.value field isn't used because it is public


min

double min

max

double max

Class com.xj.anylogic.engine.presentation.ShapeTopLevelPresentationGroup extends Shape3DGroup implements Serializable

serialVersionUID: -5725917056554505864L

Serialized Fields

owner

ShapeEmbeddedObjectPresentation owner

configuration3D

Configuration3D configuration3D

Class com.xj.anylogic.engine.presentation.ShapeWindow3D extends ShapeControl implements Serializable

serialVersionUID: 5155198611064814913L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes (reconstitutes) this instance from an input stream (representing model snapshot)

Throws:
java.io.IOException - in case of stream reading error
java.lang.ClassNotFoundException - in case of snapshot compatibility problem

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Serializes (saves) the state of this instance to an output stream (which is directed to the model snapshot file).

Serial Data:
the line width float number is emitted
Throws:
java.io.IOException - in case of stream writing error
Serialized Fields

camera

Camera3D camera

lockedCamera

Camera3D lockedCamera
If not null, then window is locked by (follows) this camera


cameraChanged

boolean cameraChanged
If window doesn't follow the camera, this field is used to mark user camera changes


transitionTimeout

long transitionTimeout
Transition timeout for the next camera change command, real milliseconds


navigationMode

int navigationMode

navigationModeChanged

boolean navigationModeChanged

Class com.xj.anylogic.engine.presentation.StatusBar extends javax.swing.JToolBar implements Serializable

serialVersionUID: -4689287268317406544L

Serialized Fields

presentation

Presentation presentation

timeLastRefresh

long timeLastRefresh

performanceMonitor

java.util.Timer performanceMonitor

eventsPerSecond

double eventsPerSecond

framesPerSecond

double framesPerSecond

memUsed

long memUsed

memMax

long memMax

titleStatus

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleStatus

valueStartCount

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueStartCount

infoIconStatus

com.xj.anylogic.engine.presentation.StatusBar.InfoIcon infoIconStatus

valueStatusText

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueStatusText

separatorStatus

javax.swing.JToolBar.Separator separatorStatus

titleTime

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleTime

valueTime

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueTime

infoRTViolation

com.xj.anylogic.engine.presentation.StatusBar.InfoIcon infoRTViolation

separatorTime

javax.swing.JToolBar.Separator separatorTime

titleStep

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleStep

valueStep

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueStep

infoIconDiscrete

com.xj.anylogic.engine.presentation.StatusBar.InfoIcon infoIconDiscrete

infoIconContinuous

com.xj.anylogic.engine.presentation.StatusBar.InfoIcon infoIconContinuous

separatorStep

javax.swing.JToolBar.Separator separatorStep

titleExperiment

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleExperiment

barExperiment

com.xj.anylogic.engine.presentation.StatusBar.InfoProgress barExperiment

valueNoExperimentLimit

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueNoExperimentLimit

separatorExperiment

javax.swing.JToolBar.Separator separatorExperiment

titleSimulation

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleSimulation

barSimulation

javax.swing.JComponent barSimulation

valueNoStopTime

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueNoStopTime

separatorSimulation

javax.swing.JToolBar.Separator separatorSimulation

titleDate

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleDate

valueDate

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueDate

separatorDate

javax.swing.JToolBar.Separator separatorDate

buttonCustomize

com.xj.anylogic.engine.presentation.Presentation.Button buttonCustomize

separatorEps

javax.swing.JToolBar.Separator separatorEps

titleEps

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleEps

valueEps

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueEps

separatorFps

javax.swing.JToolBar.Separator separatorFps

titleFps

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleFps

valueFps

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueFps

separatorMemory

javax.swing.JToolBar.Separator separatorMemory

titleMemory

com.xj.anylogic.engine.presentation.StatusBar.InfoTitle titleMemory

barMemory

com.xj.anylogic.engine.presentation.StatusBar.InfoProgress barMemory

buttonGC

com.xj.anylogic.engine.presentation.Presentation.Button buttonGC

separatorSeconds

javax.swing.JToolBar.Separator separatorSeconds

valueSeconds

com.xj.anylogic.engine.presentation.StatusBar.InfoValue valueSeconds

popupMenu

com.xj.anylogic.engine.presentation.StatusBar.PopupMenu popupMenu

Class com.xj.anylogic.engine.presentation.Texture extends java.lang.Object implements Serializable

serialVersionUID: -590137493246379374L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This method should not be called by user

Throws:
java.io.ObjectStreamException
Serialized Fields

name

java.lang.String name

ambientColor

java.awt.Color ambientColor

diffuseColor

java.awt.Color diffuseColor

specularColor

java.awt.Color specularColor

texture2D

java.net.URL texture2D

texture3D

java.net.URL texture3D

texture3DNormals

java.net.URL texture3DNormals

texture3DHeightMap

java.net.URL texture3DHeightMap

texture3DScale

double texture3DScale

Class com.xj.anylogic.engine.presentation.ToolBar extends javax.swing.JToolBar implements Serializable

serialVersionUID: 5721104171135357188L

Serialized Fields

enableSetVisible

boolean enableSetVisible

warnings

java.util.Set<E> warnings

popupConstructionInProgress

boolean popupConstructionInProgress
this variable is used by ToolBar.popupMenuWillBecomeVisible(PopupMenuEvent) in order to not to construct popup's contents twice


presentation

Presentation presentation

timeLastRefresh

long timeLastRefresh

currentPresentable

Presentable currentPresentable

allowCustomization

boolean allowCustomization

buttonOpenExperiment

com.xj.anylogic.engine.presentation.Presentation.Button buttonOpenExperiment

buttonSaveExperiment

com.xj.anylogic.engine.presentation.Presentation.Button buttonSaveExperiment

buttonOpen

com.xj.anylogic.engine.presentation.Presentation.Button buttonOpen

buttonSave

com.xj.anylogic.engine.presentation.Presentation.Button buttonSave

separatorFile

javax.swing.JToolBar.Separator separatorFile

buttonRunPause

com.xj.anylogic.engine.presentation.Presentation.Button buttonRunPause

buttonRunPauseExtension

com.xj.anylogic.engine.presentation.Presentation.DropDownButton buttonRunPauseExtension

buttonRunPauseExecutionTimeout

double buttonRunPauseExecutionTimeout
Defines the behavior of run/pause button:


buttonRunPauseLastExecutionTimeout

java.lang.String buttonRunPauseLastExecutionTimeout
Cache for the value used as default in the edit box on popup


buttonStep

com.xj.anylogic.engine.presentation.Presentation.Button buttonStep

buttonStop

com.xj.anylogic.engine.presentation.Presentation.Button buttonStop

separatorExecution

javax.swing.JToolBar.Separator separatorExecution

buttonRTScaleX1

com.xj.anylogic.engine.presentation.Presentation.Button buttonRTScaleX1

buttonSlowDown

com.xj.anylogic.engine.presentation.Presentation.Button buttonSlowDown

labelRTScale

com.xj.anylogic.engine.presentation.ToolBar.InfoTextField labelRTScale

buttonSpeedUp

com.xj.anylogic.engine.presentation.Presentation.Button buttonSpeedUp

buttonVT

com.xj.anylogic.engine.presentation.Presentation.ToggleButton buttonVT

separatorTimeScale

javax.swing.JToolBar.Separator separatorTimeScale

buttonRefresh

com.xj.anylogic.engine.presentation.Presentation.Button buttonRefresh

buttonAdaptiveFR

com.xj.anylogic.engine.presentation.Presentation.ToggleButton buttonAdaptiveFR

buttonFramesRare

com.xj.anylogic.engine.presentation.Presentation.Button buttonFramesRare

labelFrameRate

com.xj.anylogic.engine.presentation.ToolBar.InfoTextField labelFrameRate

buttonFramesFrequent

com.xj.anylogic.engine.presentation.Presentation.Button buttonFramesFrequent

buttonAntiAliasing

com.xj.anylogic.engine.presentation.Presentation.ToggleButton buttonAntiAliasing

buttonEnhancedModelAnimation

com.xj.anylogic.engine.presentation.Presentation.ToggleButton buttonEnhancedModelAnimation

buttonDisableShadersVisible

boolean buttonDisableShadersVisible

buttonDisableShaders

com.xj.anylogic.engine.presentation.Presentation.Button buttonDisableShaders

separatorAnimation

javax.swing.JToolBar.Separator separatorAnimation

buttonHome

com.xj.anylogic.engine.presentation.Presentation.Button buttonHome

buttonNavigateTo

com.xj.anylogic.engine.presentation.Presentation.Button buttonNavigateTo

buttonZoomOut

com.xj.anylogic.engine.presentation.Presentation.Button buttonZoomOut

editableLabelZoom

com.xj.anylogic.engine.presentation.ToolBar.InfoTextField editableLabelZoom

buttonZoomIn

com.xj.anylogic.engine.presentation.Presentation.Button buttonZoomIn

buttonFullScreen

com.xj.anylogic.engine.presentation.Presentation.ToggleButton buttonFullScreen

separatorView

javax.swing.JToolBar.Separator separatorView

buttonLevelTop

com.xj.anylogic.engine.presentation.Presentation.Button buttonLevelTop

buttonLevelRoot

com.xj.anylogic.engine.presentation.Presentation.Button buttonLevelRoot

buttonLevelUp

com.xj.anylogic.engine.presentation.Presentation.Button buttonLevelUp

listPresentableObjects

com.xj.anylogic.engine.presentation.JTreeComboBox listPresentableObjects

spinnerAOIndex

javax.swing.JSpinner spinnerAOIndex

separatorNavigation

javax.swing.JToolBar.Separator separatorNavigation

buttonCustomize

com.xj.anylogic.engine.presentation.Presentation.Button buttonCustomize

buttonLogo

com.xj.anylogic.engine.presentation.Presentation.Button buttonLogo

warningIcon

javax.swing.JLabel warningIcon

popupMenu

com.xj.anylogic.engine.presentation.ToolBar.PopupMenu popupMenu

Class com.xj.anylogic.engine.presentation.ViewArea extends java.lang.Object implements Serializable

serialVersionUID: -5423071780574563664L

Serialized Fields

title

java.lang.String title

x

double x

y

double y

alignTo

int alignTo

scaling

int scaling

zoom

double zoom

width

double width

height

double height



Copyright © 1991-2008 XJ Technlogies. All Rights Reserved.