Serialized Form


Package cz.cuni.jagrlib

Class cz.cuni.jagrlib.BadInterfaceException extends Exception implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.IntMap extends AbstractCollection<T> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

protected void readObject(ObjectInputStream s)
                   throws IOException,
                          ClassNotFoundException
Reconstitute the IntMap instance from a stream (i.e. deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

protected void writeObject(ObjectOutputStream s)
                    throws IOException
Save the state of the IntMap instance to a stream (i.e., serialize it).

Serial Data:
The size of IntMap is emitted (int), then for each key-value mapping represented by the IntMap: key and value are emitted (in the order that they are returned by IntMap.tupleIterator()).
Throws:
IOException
Serialized Fields

NULL_KEY

int NULL_KEY
Special value used in IntMap.keyArray for empty (unused) slots.


REMOVED_KEY

int REMOVED_KEY
Special value used in IntMap.keyArray for slots with removed keys.


maxLoad

float maxLoad
Overload bound.

Class cz.cuni.jagrlib.JaGrLibException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.LRUCache extends IntMap<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

HEAD_KEY

int HEAD_KEY
Special value used for LRU-list head.


head

LRUCache.LRUItem head
Head of the LRU-list.


lru

IntMap<T> lru
LRU-list. Double-linked list with head.


cacheCapacity

int cacheCapacity
Cache capacity in items.


recycled

LRUCache.LRUItem recycled
Linked list of recycled items (older is used).

Class cz.cuni.jagrlib.NotImplementedException extends Throwable implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

commands

List<E> commands
List of sub-commands.

Class cz.cuni.jagrlib.VCommand.ArcTo extends VCommand.MoveTo implements Serializable

serialVersionUID: 1L

Serialized Fields

r

double r
Arc radius.

 

alpha

double alpha
Starting angle in degrees.

 

beta

double beta
Finishing angle in degrees.

 

Class cz.cuni.jagrlib.VCommand.Clip extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.ClosePath extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.CreateFont extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name
Font family name.

 

style

int style
Font style flags (bitwise OR of TextRender.FONT_* constants).

 
See Also:
TextRender.FONT_BOLD

size

double size
Font size (distance between two regularly spaced text lines).

 

Class cz.cuni.jagrlib.VCommand.CubicCurveTo extends VCommand.MoveTo implements Serializable

serialVersionUID: 1L

Serialized Fields

x2

double x2
X coordinate of the third control point (X2).

 

y2

double y2
Y coordinate of the third control point (Y2).

 

x3

double x3
X coordinate of the fourth control point = curve end (X3).

 

y3

double y3
Y coordinate of the fourth control point = curve end (Y3).

 

Class cz.cuni.jagrlib.VCommand.DrawText extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

text

String text
String to be drawn.

 

Class cz.cuni.jagrlib.VCommand.Fill extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.FontOrientation extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

angle

double angle
Font angle (in degrees, counterclockwise).

 

Class cz.cuni.jagrlib.VCommand.GetFont extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

slot

int slot
Font slot (from 0 to TextRender.MAX_SLOT-1).

 
See Also:
TextRender.MAX_SLOT

Class cz.cuni.jagrlib.VCommand.LineTo extends VCommand.MoveTo implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.MoveTo extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

x

double x
X coordinate.

 

y

double y
Y coordinate.

 

Class cz.cuni.jagrlib.VCommand.NewPath extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.PopPath extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.PushPath extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.PutFont extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

slot

int slot
Font slot (from 0 to TextRender.MAX_SLOT-1).

 
See Also:
TextRender.MAX_SLOT

Class cz.cuni.jagrlib.VCommand.RArcTo extends VCommand.ArcTo implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.SetColor extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

color

double[] color
Color components Gr[A] or RGB[A] (each component lies between 0.0 and 1.0).

 

Class cz.cuni.jagrlib.VCommand.SetFillCallback extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

callback

FillCallback callback
Fill callback (object implementing FillCallback interface).

 
See Also:
FillCallback

Class cz.cuni.jagrlib.VCommand.SetFillStyle extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

style

int style
Fill style (uses VectorCommand.FILL_* constants).

 
See Also:
VectorCommand.FILL_DUMMY

Class cz.cuni.jagrlib.VCommand.SetLineCallback extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

callback

StrokeCallback callback
Stroke callback (object implementing StrokeCallback interface).

 
See Also:
StrokeCallback

Class cz.cuni.jagrlib.VCommand.SetLineStyle extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

style

int style
Stroke style (uses VectorCommand.LINE_* constants).

 
See Also:
VectorCommand.LINE_DUMMY

Class cz.cuni.jagrlib.VCommand.SetLineWidth extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

width

double width
Stroke width.

 

Class cz.cuni.jagrlib.VCommand.Stroke extends VectorCommand implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.VCommand.TextPath extends VectorCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

text

String text
String to be drawn.

 

Class cz.cuni.jagrlib.VectorCommand extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

LINE_DUMMY

int LINE_DUMMY
Dummy line style (no drawing is actually done).


LINE_CALLBACK

int LINE_CALLBACK
Callback line style.

See Also:
VCommand.SetLineStyle, VectorGraphics.setLineCallback(cz.cuni.jagrlib.iface.StrokeCallback)

LINE_SOLID

int LINE_SOLID
Solid line style (continuous line).


LINE_DASH

int LINE_DASH
Dashed line style (length(dash) = length(gap)).


LINE_DOT

int LINE_DOT
Dotted line style (length(dot) = length(gap)/4).


LINE_DASHDOT

int LINE_DASHDOT
Dash-dotted line style ("dot-gap-dash-gap" pattern).


FILL_DUMMY

int FILL_DUMMY
Dummy fill style (no drawing is actually done).


FILL_CALLBACK

int FILL_CALLBACK
Callback fill style.

See Also:
VCommand.SetFillStyle, VectorGraphics.setFillCallback(cz.cuni.jagrlib.iface.FillCallback)

FILL_SOLID

int FILL_SOLID
Solid fill style.


FILL_HATCHR

int FILL_HATCHR
/-Hatched fill style (angle = 45 degrees).


FILL_HATCHL

int FILL_HATCHL
\-Hatched fill style (angle = -45 degrees).


Package cz.cuni.jagrlib.gui

Class cz.cuni.jagrlib.gui.AboutDialog extends JDialog implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.CompositionGUI extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

info

InfoGroup info
Info about Composition.


idModules

UniqueId idModules
Numerical order for modules and groups.


idChannel

UniqueId idChannel
Numerical order for channels.


plugFrom

InfoPlug plugFrom
Active plug for new channel.


plugTo

InfoPlug plugTo
Active plug for new channel.


zoom

ZoomWindow zoom
Zoom window.


undoReg

ActionsUndo undoReg
Undo/Redo object.


canDelete

boolean canDelete
Flag for deleting modules.


countSelected

int countSelected
Count of selected modules.

Class cz.cuni.jagrlib.gui.CompositionGUIBasic extends CompositionGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

channelKey

Integer channelKey
Key of actual channel.


jPopupMenu1

JPopupMenu jPopupMenu1

jMenuItemDeleteChannel

JMenuItem jMenuItemDeleteChannel

Class cz.cuni.jagrlib.gui.GroupGUI extends ModuleGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

infoGroup

InfoGroup infoGroup
Information about Group.

Class cz.cuni.jagrlib.gui.GroupGUIBasic extends GroupGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

windowParam

ParamsEdit windowParam
Window for editing parameters.


jLabelName

JLabel jLabelName

jScrollPaneParams

JScrollPane jScrollPaneParams

jPanelPlugs

JPanel jPanelPlugs

jPanelParams

JPanel jPanelParams

Class cz.cuni.jagrlib.gui.GroupGUIImproved extends ModuleGUIImproved implements Serializable

serialVersionUID: 1L

Serialized Fields

infoGroup

InfoGroup infoGroup
Information about Group.


undoGroup

ActionsUndo undoGroup
Undo/Redo object for group.


miComposition

JMenuItem miComposition

miUngroup

JMenuItem miUngroup

Class cz.cuni.jagrlib.gui.MainWindow extends JFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

panelStatus

StatusBar panelStatus

buttonDimension

Dimension buttonDimension
Size of toolbar-buttons.


runningDimension

Dimension runningDimension

mainMenu

JMenuBar mainMenu

menuWindow

JMenu menuWindow

miOutline

JMenuItem miOutline

menuHelp

JMenu menuHelp

miAbout

JMenuItem miAbout

menuFile

JMenu menuFile

miLoad

JMenuItem miLoad

miSave

JMenuItem miSave

miSaveAs

JMenuItem miSaveAs

miExit

JMenuItem miExit

miNew

JMenuItem miNew

miClose

JMenuItem miClose

menuComposition

JMenu menuComposition

miAddModule

JMenuItem miAddModule

miDeleteModule

JMenuItem miDeleteModule

miGroup

JMenuItem miGroup

miUngroup

JMenuItem miUngroup

menuTools

JMenu menuTools

miRegistry

JMenuItem miRegistry

miViewRegistry

JMenuItem miViewRegistry

miOptions

JMenuItem miOptions

miRun

JMenuItem miRun

menuEdit

JMenu menuEdit

miUndo

JMenuItem miUndo

miRedo

JMenuItem miRedo

miSelectAll

JMenuItem miSelectAll

panelMain

JPanel panelMain

desktop

JDesktopPane desktop

contentPane

JPanel contentPane

outlineWindow

ZoomWindow outlineWindow

jToolBarMain

JToolBar jToolBarMain

btAdd

JButton btAdd

btNew

JButton btNew

btLoad

JButton btLoad

btSave

JButton btSave

btDelete

JButton btDelete

btGroup

JButton btGroup

btUngroup

JButton btUngroup

btRun

JButton btRun

btRunning

JButton btRunning

jScrollPaneDesctop

JScrollPane jScrollPaneDesctop

running

Map<K,V> running
Actual running worker threads.

Class cz.cuni.jagrlib.gui.MainWindow.JMenuItemFrame extends JMenuItem implements Serializable

serialVersionUID: 1L

Serialized Fields

frame

JInternalFrame frame

Class cz.cuni.jagrlib.gui.ModuleGUI extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

info

InfoModule info
Information about module.


actualPlug

InfoPlug actualPlug
Actual plug.


oldMouseX

int oldMouseX
Old mouse position (X-coordinate).


oldMouseY

int oldMouseY
Old mouse position (Y-coordinate).


oldPosition

Point oldPosition

oldSize

Dimension oldSize

drawRegion

Rectangle drawRegion

modeMove

int modeMove
Mode of mouse move or mouse procedure in action.


undoReg

ActionsUndo undoReg
Undo/Redo object.


jPopupMenuActions

JPopupMenu jPopupMenuActions

mouseClick

MouseAdapter mouseClick

mouseMove

MouseMotionAdapter mouseMove

Class cz.cuni.jagrlib.gui.ModuleGUIImproved extends ModuleGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

windowParam

ParamsEdit windowParam
Window for editing parameters.


tempChannel

InfoChannel tempChannel
Temporary channel.


oldPositionPlug

ModuleGUIImproved.PlugPosition oldPositionPlug

lbName

JLabel lbName

tfName

JTextField tfName

jScrollPaneParams

JScrollPane jScrollPaneParams

panelPlugs

JPanel panelPlugs

panelParams

JPanel panelParams

miSelect

JMenuItem miSelect

miChannel

JMenuItem miChannel

miConnect

JMenuItem miConnect

miDelete

JMenuItem miDelete

miGroup

JMenuItem miGroup

miParams

JMenuItem miParams

miSize

JMenuItem miSize

miCode

JMenuItem miCode

miRename

JMenuItem miRename

Class cz.cuni.jagrlib.gui.ModuleGUIImproved.PlugBorder extends EmptyBorder implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.OptionsDialog extends JDialog implements Serializable

serialVersionUID: 1L

Serialized Fields

chooser

JFileChooser chooser
File chooser.


filter

CommonFileFilter filter
File filter for file chooser.


panelButton

JPanel panelButton

btnStorno

JButton btnStorno

btnOK

JButton btnOK

tabPaneOptions

JTabbedPane tabPaneOptions

panelColor

JPanel panelColor

jColors

OptionsDialog.PanelColorChooser jColors

panelLabels

JPanel panelLabels

lbPlugsConnect

OptionsDialog.ColorLabel lbPlugsConnect

lbPlugsMandatory

OptionsDialog.ColorLabel lbPlugsMandatory

lbPlugsNonMandatory

OptionsDialog.ColorLabel lbPlugsNonMandatory

lbPlugsActive

OptionsDialog.ColorLabel lbPlugsActive

lbPlugsOpposite

OptionsDialog.ColorLabel lbPlugsOpposite

lbChannelsNormal

OptionsDialog.ColorLabel lbChannelsNormal

lbChannelsActive

OptionsDialog.ColorLabel lbChannelsActive

lbChannelsTemp

OptionsDialog.ColorLabel lbChannelsTemp

lbModuleSelect

OptionsDialog.ColorLabel lbModuleSelect

lbModuleName

OptionsDialog.ColorLabel lbModuleName

lbGroupName

OptionsDialog.ColorLabel lbGroupName

lbZoomModule

OptionsDialog.ColorLabel lbZoomModule

lbZoomModuleMand

OptionsDialog.ColorLabel lbZoomModuleMand

lbZoomModuleNonM

OptionsDialog.ColorLabel lbZoomModuleNonM

panelMisc

JPanel panelMisc

cbConnect

JCheckBox cbConnect

lbModuleHeight

JLabel lbModuleHeight

edModuleHeight

IntNumberField edModuleHeight

lbModuleWidth

JLabel lbModuleWidth

edModuleWidth

IntNumberField edModuleWidth

lbParamHeight

JLabel lbParamHeight

edParamHeight

IntNumberField edParamHeight

panelPaths

JPanel panelPaths

lbPathEditor

JLabel lbPathEditor

lbPathRes

JLabel lbPathRes

lbPathData

JLabel lbPathData

lbPathReg

JLabel lbPathReg

tfPathRes

JTextField tfPathRes

tfPathReg

JTextField tfPathReg

tfPathData

JTextField tfPathData

tfPathEditor

JTextField tfPathEditor

btPathRes

JButton btPathRes

btPathReg

JButton btPathReg

btPathData

JButton btPathData

btPathEditor

JButton btPathEditor

Class cz.cuni.jagrlib.gui.OptionsDialog.ColorLabel extends JLabel implements Serializable

serialVersionUID: 1L

Serialized Fields

colorChooser

OptionsDialog.PanelColorChooser colorChooser
Color chooser panel.

Class cz.cuni.jagrlib.gui.OptionsDialog.PanelColorChooser extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

activeLabel

OptionsDialog.ColorLabel activeLabel
Active label for seting.


jCC

JColorChooser jCC
Color chooser object.

Class cz.cuni.jagrlib.gui.ParamBoolean extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jCheckBoxBool

JCheckBox jCheckBoxBool

Class cz.cuni.jagrlib.gui.ParamCombo extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jComboBox1

JComboBox jComboBox1

Class cz.cuni.jagrlib.gui.ParamDouble extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextFieldValue

DoubleNumberField jTextFieldValue

jPanelVolume

Volume jPanelVolume

Class cz.cuni.jagrlib.gui.ParamFloat extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextFieldValue

DoubleNumberField jTextFieldValue

jPanelVolume

Volume jPanelVolume

Class cz.cuni.jagrlib.gui.ParamGUI extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

info

InfoParam info
Information about parameter.


manipulator

ParamGUI.ParamEdit manipulator
The actual manipulator.


jLabelName

JLabel jLabelName

jPanelValue

JPanel jPanelValue

jPanelParam

JPanel jPanelParam

Class cz.cuni.jagrlib.gui.ParamInteger extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextFieldValue

IntNumberField jTextFieldValue

jPanelVolume

Volume jPanelVolume

Class cz.cuni.jagrlib.gui.ParamLong extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextFieldValue

IntNumberField jTextFieldValue

jPanelVolume

Volume jPanelVolume

Class cz.cuni.jagrlib.gui.ParamsEdit extends JInternalFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

panelMain

JPanel panelMain

jScrollPaneParams

JScrollPane jScrollPaneParams

Class cz.cuni.jagrlib.gui.ParamSpec extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextFieldValue

JTextField jTextFieldValue

jButtonView

JButton jButtonView

Class cz.cuni.jagrlib.gui.ParamString extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextField

JTextField jTextField

Class cz.cuni.jagrlib.gui.ParamText extends ParamGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

jTextArea

JTextArea jTextArea
Multi-line text editing area.

Class cz.cuni.jagrlib.gui.StatusBar extends JPanel implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.Volume extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

lastMouseX

int lastMouseX
Position of mouse cursor.


lastMouseY

int lastMouseY
Position of mouse cursor.


number

double number
Actual value.


param

ParamGUI param
Panel with parameter.


type

String type
Type of value. Integer, Long, Float or Double


increment

double increment
Step of inceremnting/decrementing.

Class cz.cuni.jagrlib.gui.WorkSpaceGUI extends JInternalFrame implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.WorkSpaceGUIBasic extends WorkSpaceGUI implements Serializable

serialVersionUID: 1L

Serialized Fields

zoom

ZoomWindow zoom
Zoom window.


undo

ActionsUndo undo
Undo/Redo object.


closing

boolean closing
In closing process?


contentPane

JPanel contentPane

jScrollPaneSpace

JScrollPane jScrollPaneSpace

panelComposition

CompositionGUI panelComposition

Class cz.cuni.jagrlib.gui.ZoomBasic extends ZoomWindow implements Serializable

serialVersionUID: 1L

Serialized Fields

jPanelPomer

JPanel jPanelPomer

jLabelPomer

JLabel jLabelPomer

jTextFieldPomer

IntNumberField jTextFieldPomer

Class cz.cuni.jagrlib.gui.ZoomImproved extends ZoomBasic implements Serializable

serialVersionUID: 1L

Serialized Fields

paintChannels

boolean paintChannels
Flag for painting channles.


paintModules

boolean paintModules
Flag for painting modules in real ratio.


jPopupMenuZoom

JPopupMenu jPopupMenuZoom

jCheckBoxMenuItemChannel

JCheckBoxMenuItem jCheckBoxMenuItemChannel

jCheckBoxMenuItemModule

JCheckBoxMenuItem jCheckBoxMenuItemModule

Class cz.cuni.jagrlib.gui.ZoomWindow extends JInternalFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

composition

CompositionGUI composition
Active composition.


pomer

int pomer
Ratio of zoom.


contentPane

JPanel contentPane

jScrollPaneZoom

JScrollPane jScrollPaneZoom

jPanelZoom

JPanel jPanelZoom
Panel for painting composition.


Package cz.cuni.jagrlib.gui.comp

Class cz.cuni.jagrlib.gui.comp.DoubleNumberField extends JTextField implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.comp.DoubleNumberField.DoubleNumberDocument extends PlainDocument implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.comp.IntNumberField extends JTextField implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.comp.IntNumberField.IntNumberDocument extends PlainDocument implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.gui.comp.MyTableModel extends AbstractTableModel implements Serializable

serialVersionUID: 1L

Serialized Fields

columnNames

String[] columnNames
Column names.


data

Object[][] data
Data itself.


Package cz.cuni.jagrlib.iface

Package cz.cuni.jagrlib.piece

Class cz.cuni.jagrlib.piece.AWTWindow.AWTCanvas extends JComponent implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.piece.RasterImagePreview.RasterCanvas extends JComponent implements Serializable

serialVersionUID: 1L

Serialized Fields

im

BufferedImage im
Rendered raster image.

Class cz.cuni.jagrlib.piece.VEFDS.MapAttr extends HashMap<VEFDS.AttrKey,VEFDS.Attribute> implements Serializable

serialVersionUID: 1L


Package cz.cuni.jagrlib.reg

Class cz.cuni.jagrlib.reg.HashMapChannels extends HashMap<Integer,InfoChannel> implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.reg.HashMapModules extends HashMap<Integer,InfoModule> implements Serializable

serialVersionUID: 1L

Class cz.cuni.jagrlib.reg.RegGroupDialog extends JDialog implements Serializable

serialVersionUID: 1L

Serialized Fields

retVal

boolean retVal
Return value.


tables

RegTables tables
Registry data.


group

InfoGroup group
Information about group.


panelMain

JPanel panelMain

panelButton

JPanel panelButton

lbName

JLabel lbName

tfName

JTextField tfName

lbTemplate

JLabel lbTemplate

tfTemplate

JTextField tfTemplate

lbCategory

JLabel lbCategory

tfCategory

JTextField tfCategory

lbDescription

JLabel lbDescription

tfDescription

JTextField tfDescription

btRegistry

JButton btRegistry

btStorno

JButton btStorno

splitGroup

JSplitPane splitGroup

scrollGroup

JScrollPane scrollGroup

scrollModules

JScrollPane scrollModules

jPanelModules

JPanel jPanelModules

Class cz.cuni.jagrlib.reg.RegModulesDialog extends JDialog implements Serializable

serialVersionUID: 1L

Serialized Fields

tables

RegTables tables
Registry data.


chooser

JFileChooser chooser
File chooser.


filter

CommonFileFilter filter
File filter for file chooser.


contentPane

JPanel contentPane

panelMain

cz.cuni.jagrlib.reg.RegModulesDialog.PanelModule panelMain

panelButton

JPanel panelButton

btClose

JButton btClose

btRead

JButton btRead

btRegFiles

JButton btRegFiles

btRegistry

JButton btRegistry

btSave

JButton btSave

tabModules

JTabbedPane tabModules

Class cz.cuni.jagrlib.reg.RegModulesSelect extends JDialog implements Serializable

serialVersionUID: 1L

Serialized Fields

retName

String retName
Selected module.


pieceName

String pieceName
Selected module.


packageName

String packageName
Selected package.


templateName

String templateName
Selected template.


infoPiece

InfoModule infoPiece
Selected module.


infoPieces

InfoModule[] infoPieces
Selected modules.


buttonDimension

Dimension buttonDimension
Size of tool-buttons.


tables

RegTables tables
Registry data.


changedReg

boolean changedReg
Flag, if registry data was changed.


jTablePlug

JTable jTablePlug

jTablePiece

JTable jTablePiece

jTableParam

JTable jTableParam

toolBarReg

JToolBar toolBarReg

btRegistry

JButton btRegistry

btUnregistry

JButton btUnregistry

btClose

JButton btClose

btSaveReg

JButton btSaveReg

btOpen

JButton btOpen

panelButton

JPanel panelButton

btOK

JButton btOK

btStorno

JButton btStorno

panelMain

JPanel panelMain

panelFilter

SelectFilter panelFilter

jSplitPaneTables

JSplitPane jSplitPaneTables

jSplitPanePiece

JSplitPane jSplitPanePiece

tableScrollPanePiece

JScrollPane tableScrollPanePiece

tableScrollPanePlug

JScrollPane tableScrollPanePlug

tableScrollPaneParam

JScrollPane tableScrollPaneParam

rowChanged

ListSelectionListener rowChanged

menuMain

JMenuBar menuMain

menuData

JMenu menuData

miRegistry

JMenuItem miRegistry

miUnregistry

JMenuItem miUnregistry

miSave

JMenuItem miSave

miClose

JMenuItem miClose

miOpen

JMenuItem miOpen

Class cz.cuni.jagrlib.reg.SelectFilter extends JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

showGroup

boolean showGroup

Class cz.cuni.jagrlib.reg.SelectFilterBasic extends SelectFilter implements Serializable

serialVersionUID: 1L

Serialized Fields

infoPiece

InfoModule infoPiece

panelFilter

JPanel panelFilter

lbFilter

JLabel lbFilter

panelCategory

JPanel panelCategory

tfLimit

JTextField tfLimit

lbLimit

JLabel lbLimit

panelPlugLimit

JPanel panelPlugLimit

cbPlugLimit

JCheckBox cbPlugLimit

comboIface

JComboBox comboIface