Serialized Form


Package org.apache.commons.beanutils

Class org.apache.commons.beanutils.BasicDynaBean extends java.lang.Object implements Serializable

Serialized Fields

dynaClass

DynaClass dynaClass
The DynaClass "base class" that this DynaBean is associated with.


values

java.util.HashMap<K,V> values
The set of property values for this DynaBean, keyed by property name.

Class org.apache.commons.beanutils.BasicDynaClass extends java.lang.Object implements Serializable

Serialized Fields

constructorValues

java.lang.Object[] constructorValues
The argument values to be passed to the constructore we will use to create new DynaBean instances.


dynaBeanClass

java.lang.Class<T> dynaBeanClass
The DynaBean implementation class we will use for creating new instances.


name

java.lang.String name
The "name" of this DynaBean class.


properties

DynaProperty[] properties
The set of dynamic properties that are part of this DynaClass.


propertiesMap

java.util.HashMap<K,V> propertiesMap
The set of dynamic properties that are part of this DynaClass, keyed by the property name. Individual descriptor instances will be the same instances as those in the properties list.

Class org.apache.commons.beanutils.BeanAccessLanguageException extends java.lang.IllegalArgumentException implements Serializable

Class org.apache.commons.beanutils.ConversionException extends java.lang.RuntimeException implements Serializable

Serialized Fields

cause

java.lang.Throwable cause
The root cause of this ConversionException, compatible with JDK 1.4's extensions to java.lang.Throwable.

Class org.apache.commons.beanutils.DynaProperty extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads field values for this object safely. There are issues with serializing primitive class types on certain JVM versions (including java 1.3). This method provides a workaround.

Throws:
java.io.StreamCorruptedException - when the stream data values are outside expected range
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Writes this object safely. There are issues with serializing primitive class types on certain JVM versions (including java 1.3). This method provides a workaround.

Throws:
java.io.IOException
Serialized Fields

name

java.lang.String name
Property name

Class org.apache.commons.beanutils.LazyDynaBean extends java.lang.Object implements Serializable

Serialized Fields

values

java.util.Map<K,V> values
The MutableDynaClass "base class" that this DynaBean is associated with.


dynaClass

MutableDynaClass dynaClass
The MutableDynaClass "base class" that this DynaBean is associated with.

Class org.apache.commons.beanutils.LazyDynaClass extends BasicDynaClass implements Serializable

Serialized Fields

restricted

boolean restricted
Controls whether changes to this DynaClass's properties are allowed.


returnNull

boolean returnNull

Controls whether the getDynaProperty() method returns null if a property doesn't exist - or creates a new one.

Default is false.

Class org.apache.commons.beanutils.LazyDynaMap extends LazyDynaBean implements Serializable

Serialized Fields

name

java.lang.String name
The name of this DynaClass (analogous to the getName() method of java.lang.Class).


restricted

boolean restricted
Controls whether changes to this DynaClass's properties are allowed.


returnNull

boolean returnNull

Controls whether the getDynaProperty() method returns null if a property doesn't exist - or creates a new one.

Default is false.

Class org.apache.commons.beanutils.NestedNullException extends BeanAccessLanguageException implements Serializable

Class org.apache.commons.beanutils.ResultSetDynaClass extends org.apache.commons.beanutils.JDBCDynaClass implements Serializable

Serialized Fields

resultSet

java.sql.ResultSet resultSet

The ResultSet we are wrapping.

Class org.apache.commons.beanutils.RowSetDynaClass extends org.apache.commons.beanutils.JDBCDynaClass implements Serializable

Serialized Fields

limit

int limit

Limits the size of the returned list. The call to getRows() will return at most limit number of rows. If less than or equal to 0, does not limit the size of the result.


rows

java.util.List<E> rows

The list of DynaBeans representing the contents of the original ResultSet on which this RowSetDynaClass was based.


Package org.apache.commons.collections

Class org.apache.commons.collections.ArrayStack extends java.util.ArrayList implements Serializable

serialVersionUID: 2130079159931574599L

Class org.apache.commons.collections.BufferUnderflowException extends java.util.NoSuchElementException implements Serializable

Serialized Fields

throwable

java.lang.Throwable throwable
The root cause throwable

Class org.apache.commons.collections.FastHashMap extends java.util.HashMap implements Serializable

Serialized Fields

map

java.util.HashMap<K,V> map
The underlying map we are managing.


fast

boolean fast
Are we currently operating in "fast" mode?


Package org.lee.mugen.core.renderer.java

Class org.lee.mugen.core.renderer.java.JGameWindow extends java.awt.Canvas implements Serializable

Serialized Fields

strategy

java.awt.image.BufferStrategy strategy
The stragey that allows us to use accelerate page flipping


gameRunning

boolean gameRunning
True if the game is currently "running", i.e. the game loop is looping


frame

javax.swing.JFrame frame
The frame in which we'll display our canvas


width

int width
The width of the display


height

int height
The height of the display


callback

Game callback
The callback which should be notified of events caused by this window


gStrategy

java.awt.Graphics2D gStrategy
The current accelerated graphics context


normalBuffer

java.awt.image.BufferedImage normalBuffer

hisResBuffer

java.awt.image.BufferedImage hisResBuffer

sai2xBuffer

java.awt.image.BufferedImage sai2xBuffer

imgScale2x

ImageScale2x imgScale2x

sprDebugerUI

SpriteDebugerUI sprDebugerUI

isTransitionToHis

boolean isTransitionToHis

Class org.lee.mugen.core.renderer.java.JGameWindowLow extends JGameWindow implements Serializable

Class org.lee.mugen.core.renderer.java.PalfxFilter extends com.jhlabs.image.PointFilter implements Serializable

Serialized Fields

fxSub

PalFxSub fxSub

Package org.lee.mugen.core.renderer.lwjgl

Class org.lee.mugen.core.renderer.lwjgl.LwjgGameWindow extends java.awt.Component implements Serializable

Serialized Fields

callback

Game callback

width

int width
The width of the game display area


height

int height
The height of the game display area


textureLoader

TextureLoader textureLoader
The loader responsible for converting images into OpenGL textures


title

java.lang.String title
Title of window, we get it before our window is ready, so store it till needed


gameRunning

boolean gameRunning

spriteCmdProcess

java.util.List<E> spriteCmdProcess

keyThread

java.lang.Thread keyThread

Package org.lee.mugen.test

Class org.lee.mugen.test.ExpressionTester extends javax.swing.JPanel implements Serializable

Serialized Fields

_txtExpression

javax.swing.JTextArea _txtExpression

_txtResult

javax.swing.JTextArea _txtResult

_btnEval

javax.swing.JButton _btnEval

Package org.lee.mugen.util.debugger

Class org.lee.mugen.util.debugger.SpriteDebugerUI extends javax.swing.JFrame implements Serializable

Serialized Fields

lblForCbxSprChooser

javax.swing.JLabel lblForCbxSprChooser

cbxSprChooser

javax.swing.JComboBox cbxSprChooser

lstActions

javax.swing.JList lstActions

txaStateCtrInfo

javax.swing.JTextArea txaStateCtrInfo

Package org.lee.mugen.util.debugger.component

Class org.lee.mugen.util.debugger.component.CnsTextComponent extends javax.swing.text.JTextComponent implements Serializable


Package org.lee.mugen.util.debugger.component.cns

Class org.lee.mugen.util.debugger.component.cns.CnsMenu extends javax.swing.JMenu implements Serializable

serialVersionUID: 1L

Class org.lee.mugen.util.debugger.component.cns.CnsPanelDebugger extends javax.swing.JPanel implements Serializable

Serialized Fields

parent

SpriteDebugerUI parent

lblStatedefs

javax.swing.JLabel lblStatedefs

lstStatedefs

javax.swing.JList lstStatedefs

spMain

javax.swing.JSeparator spMain

lblStatedef

javax.swing.JLabel lblStatedef

txtStatedef

javax.swing.JTextArea txtStatedef