Jalopy 1.0b10

Serialized Form


Package de.hunsicker.jalopy

Class de.hunsicker.jalopy.VersionMismatchException implements Serializable

Serialized Fields

_expected

Version _expected
The expected version.

_found

Version _found
The found version.


Package de.hunsicker.jalopy.language

Class de.hunsicker.jalopy.language.ClassRepositoryEntry.Info implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
DOCUMENT ME!

Class de.hunsicker.jalopy.language.JavaNode implements Serializable

Serialized Fields

parent

JavaNode parent
Parent node.

prevSibling

JavaNode prevSibling
Previous node.

_annotations

List _annotations
The attached annotations.

_position

Position _position
Position that is to be tracked.

Class de.hunsicker.jalopy.language.Node implements Serializable

Serialized Fields

text

String text
Node text.

endColumn

int endColumn
Column number where this node ends.

endLine

int endLine
Line number where this node ends.

startColumn

int startColumn
Column number where this node starts.

startLine

int startLine
Line number where this node starts.

type

int type
Node type.

Class de.hunsicker.jalopy.language.Recognizer.ParseException implements Serializable

Class de.hunsicker.jalopy.language.TransformationException implements Serializable


Package de.hunsicker.jalopy.storage

Class de.hunsicker.jalopy.storage.Convention.Key implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Deserializes a key from the given stream.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serializes this instance.
Serial Data:
Emits the name of the key, followed by its pre-computed hash code value.

Class de.hunsicker.jalopy.storage.History.Entry implements Serializable

Serialized Fields

packageName

String packageName
The package name of the entry.

lastmod

long lastmod
The time this entry was last processed.

Class de.hunsicker.jalopy.storage.Key implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Deprecated. 
Deserializes a key from the given stream.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Deprecated. 
Serializes this instance.
Serial Data:
Emits the name of the key, followed by its pre-computed hash code value.

Class de.hunsicker.jalopy.storage.Project implements Serializable

Serialized Fields

_name

String _name
The project name.

_description

String _description
The project description.


Package de.hunsicker.jalopy.swing

Class de.hunsicker.jalopy.swing.AbstractSettingsPage implements Serializable

Serialized Fields

bundle

ResourceBundle bundle
ResourceBundle that provides the localized string resources for the graphical components.

settings

Convention settings
The code convention to display/edit.

trigger

ActionListener trigger
Listener used to trigger an update of the preview frame.

_container

de.hunsicker.jalopy.swing.SettingsContainer _container
Our container. May be null if the code convention pages are directly embedded into a Java appplication.

_category

String _category
The category of the page.

_title

String _title
The title to display in title bar.

Class de.hunsicker.jalopy.swing.BlankLinesSettingsPage implements Serializable

Serialized Fields

_blankLinesAfterLeftCurlyCheckBox

JCheckBox _blankLinesAfterLeftCurlyCheckBox

_blankLinesBeforeRightCurlyCheckBox

JCheckBox _blankLinesBeforeRightCurlyCheckBox

_chunksByBlankLinesCheckBox

JCheckBox _chunksByBlankLinesCheckBox

_chunksByCommentsCheckBox

JCheckBox _chunksByCommentsCheckBox

_keepBlankLinesCheckBox

JCheckBox _keepBlankLinesCheckBox

_separatorCheckBox

JCheckBox _separatorCheckBox

_separatorRecursiveCheckBox

JCheckBox _separatorRecursiveCheckBox

_blankLinesAfterLeftCurlyComboBox

JComboBox _blankLinesAfterLeftCurlyComboBox

_blankLinesBeforeRightCurlyComboBox

JComboBox _blankLinesBeforeRightCurlyComboBox

_fillCharacterComboBox

JComboBox _fillCharacterComboBox

_keepBlankLinesComboBox

JComboBox _keepBlankLinesComboBox

_linesAfterBlockComboBox

JComboBox _linesAfterBlockComboBox

_linesAfterClassComboBox

JComboBox _linesAfterClassComboBox

_linesAfterDeclarationComboBox

JComboBox _linesAfterDeclarationComboBox

_linesAfterImportComboBox

JComboBox _linesAfterImportComboBox

_linesAfterInterfaceComboBox

JComboBox _linesAfterInterfaceComboBox

_linesAfterMethodComboBox

JComboBox _linesAfterMethodComboBox

_linesAfterPackageComboBox

JComboBox _linesAfterPackageComboBox

_linesBeforeBlockComboBox

JComboBox _linesBeforeBlockComboBox

_linesBeforeCaseComboBox

JComboBox _linesBeforeCaseComboBox

_linesBeforeControlComboBox

JComboBox _linesBeforeControlComboBox

_linesBeforeDeclarationComboBox

JComboBox _linesBeforeDeclarationComboBox

_linesBeforeJavadocComboBox

JComboBox _linesBeforeJavadocComboBox

_linesBeforeMultiLineComboBox

JComboBox _linesBeforeMultiLineComboBox

_linesBeforeSingleLineComboBox

JComboBox _linesBeforeSingleLineComboBox

_tabbedPane

JTabbedPane _tabbedPane

_classTextField

JTextField _classTextField

_constructorTextField

JTextField _constructorTextField

_instanceInitTextField

JTextField _instanceInitTextField

_instanceVarTextField

JTextField _instanceVarTextField

_interfaceTextField

JTextField _interfaceTextField

_methodTextField

JTextField _methodTextField

_staticVarInitTextField

JTextField _staticVarInitTextField

Class de.hunsicker.jalopy.swing.BracesSettingsPage implements Serializable

Serialized Fields

_cStyleCheckBox

JCheckBox _cStyleCheckBox

_cuddleEmptyBracesCheckBox

JCheckBox _cuddleEmptyBracesCheckBox

_customStyleCheckBox

JCheckBox _customStyleCheckBox

_gnuStyleCheckBox

JCheckBox _gnuStyleCheckBox

_insertDoWhileCheckBox

JCheckBox _insertDoWhileCheckBox

_insertEmptyStatementCheckBox

JCheckBox _insertEmptyStatementCheckBox

_insertForCheckBox

JCheckBox _insertForCheckBox

_insertIfElseCheckBox

JCheckBox _insertIfElseCheckBox

_insertWhileCheckBox

JCheckBox _insertWhileCheckBox

_newlineLeftCheckBox

JCheckBox _newlineLeftCheckBox

_newlineRightCheckBox

JCheckBox _newlineRightCheckBox

_removeBlockCheckBox

JCheckBox _removeBlockCheckBox

_removeDoWhileCheckBox

JCheckBox _removeDoWhileCheckBox

_removeForCheckBox

JCheckBox _removeForCheckBox

_removeIfElseCheckBox

JCheckBox _removeIfElseCheckBox

_removeWhileCheckBox

JCheckBox _removeWhileCheckBox

_sunStyleCheckBox

JCheckBox _sunStyleCheckBox

_treatDifferentCheckBox

JCheckBox _treatDifferentCheckBox

_treatDifferentIfWrappedCheckBox

JCheckBox _treatDifferentIfWrappedCheckBox

_cuddleEmptyBracesComboBox

JComboBox _cuddleEmptyBracesComboBox

_indentAfterRightBraceComboBox

JComboBox _indentAfterRightBraceComboBox

_indentLeftBraceComboBox

JComboBox _indentLeftBraceComboBox

_indentRightBraceComboBox

JComboBox _indentRightBraceComboBox

_tabbedPane

JTabbedPane _tabbedPane

_indentAfterRightBraceComboBoxPnl

de.hunsicker.jalopy.swing.NumberComboBoxPanel _indentAfterRightBraceComboBoxPnl

_indentLeftBraceComboBoxPnl

de.hunsicker.jalopy.swing.NumberComboBoxPanel _indentLeftBraceComboBoxPnl

_indentRightBraceComboBoxPnl

de.hunsicker.jalopy.swing.NumberComboBoxPanel _indentRightBraceComboBoxPnl

Class de.hunsicker.jalopy.swing.CodeInspectorSettingsPage implements Serializable

Serialized Fields

_enableCheckBox

JCheckBox _enableCheckBox

_tip15CheckBox

JCheckBox _tip15CheckBox

_tipAdhereNamingConventionCheckBox

JCheckBox _tipAdhereNamingConventionCheckBox

_tipAvoidThreadGroupsCheckBox

JCheckBox _tipAvoidThreadGroupsCheckBox

_tipDeclareListCommentCheckBox

JCheckBox _tipDeclareListCommentCheckBox

_tipDontIgnoreExceptionCheckBox

JCheckBox _tipDontIgnoreExceptionCheckBox

_tipDontSubstituteCheckBox

JCheckBox _tipDontSubstituteCheckBox

_tipEmptyFinallyCheckBox

JCheckBox _tipEmptyFinallyCheckBox

_tipInterfaceTypeCheckBox

JCheckBox _tipInterfaceTypeCheckBox

_tipNeverExceptionCheckBox

JCheckBox _tipNeverExceptionCheckBox

_tipNeverThrowableCheckBox

JCheckBox _tipNeverThrowableCheckBox

_tipObeyEqualsCheckBox

JCheckBox _tipObeyEqualsCheckBox

_tipOverrideEqualsCheckBox

JCheckBox _tipOverrideEqualsCheckBox

_tipOverrideHashCodeCheckBox

JCheckBox _tipOverrideHashCodeCheckBox

_tipOverrideStringCheckBox

JCheckBox _tipOverrideStringCheckBox

_tipReferByInterfaceCheckBox

JCheckBox _tipReferByInterfaceCheckBox

_tipReplaceStructCheckBox

JCheckBox _tipReplaceStructCheckBox

_tipStringLiteralI18nCheckBox

JCheckBox _tipStringLiteralI18nCheckBox

_tipWaitOutsideLoopCheckBox

JCheckBox _tipWaitOutsideLoopCheckBox

_tipWrongListCommentCheckBox

JCheckBox _tipWrongListCommentCheckBox

_tipZeroArrayCheckBox

JCheckBox _tipZeroArrayCheckBox

Class de.hunsicker.jalopy.swing.CommentsSettingsPage implements Serializable

Serialized Fields

_formatMultiLineCheckBox

JCheckBox _formatMultiLineCheckBox

_removeJavadocCheckBox

JCheckBox _removeJavadocCheckBox

_removeMultiCheckBox

JCheckBox _removeMultiCheckBox

_removeSingleCheckBox

JCheckBox _removeSingleCheckBox

Class de.hunsicker.jalopy.swing.EnvironmentSettingsPage implements Serializable

Serialized Fields

_variablesList

de.hunsicker.jalopy.swing.AddRemoveList _variablesList

_addButton

JButton _addButton

_removeButton

JButton _removeButton

_tabs

JTabbedPane _tabs

Class de.hunsicker.jalopy.swing.FooterSettingsPage implements Serializable

Class de.hunsicker.jalopy.swing.GeneralSettingsPage implements Serializable

Serialized Fields

FILTER_JAL

FileFilter FILTER_JAL

FILTER_XML

FileFilter FILTER_XML

_compatComboBox

JComboBox _compatComboBox

_descTextField

JTextField _descTextField

_nameTextField

JTextField _nameTextField

Class de.hunsicker.jalopy.swing.HeaderSettingsPage implements Serializable

Serialized Fields

_keysList

de.hunsicker.jalopy.swing.AddRemoveList _keysList

_addButton

JButton _addButton

_removeButton

JButton _removeButton

_useCheckBox

JCheckBox _useCheckBox

_blankLinesAfterComboBox

JComboBox _blankLinesAfterComboBox

_blankLinesBeforeComboBox

JComboBox _blankLinesBeforeComboBox

_smartModeComboBox

JComboBox _smartModeComboBox

_tabs

JTabbedPane _tabs

_textTextArea

JTextArea _textTextArea

_blankLinesAfterComboBoxPnl

de.hunsicker.jalopy.swing.NumberComboBoxPanel _blankLinesAfterComboBoxPnl

_blankLinesBeforeComboBoxPnl

de.hunsicker.jalopy.swing.NumberComboBoxPanel _blankLinesBeforeComboBoxPnl

Class de.hunsicker.jalopy.swing.ImportsSettingsPage implements Serializable

Serialized Fields

_tableModel

DefaultTableModel _tableModel
The grouping entries.

_collapseCheckBox

JCheckBox _collapseCheckBox
Enables/disables import statements collapsing.

_expandCheckBox

JCheckBox _expandCheckBox
Enables/disables import statements expanding.

_sortImportsCheckBox

JCheckBox _sortImportsCheckBox
Enables/disables the grouping functionality.

_groupingDepthComboBox

JComboBox _groupingDepthComboBox
Specifies the grouping depth.

_table

JTable _table
The table which displays the grouping entries.

_tableList

de.hunsicker.jalopy.swing.TableList _tableList
The table to display the values.

_selectionAllowed

boolean _selectionAllowed

Class de.hunsicker.jalopy.swing.IndentationSettingsPage implements Serializable

Serialized Fields

_alignAssignmentsCheckBox

JCheckBox _alignAssignmentsCheckBox

_alignMethodCallChainsCheckBox

JCheckBox _alignMethodCallChainsCheckBox

_alignMethodDefParamsCheckBox

JCheckBox _alignMethodDefParamsCheckBox

_alignTernaryOperatorCheckBox

JCheckBox _alignTernaryOperatorCheckBox

_alignVariablesCheckBox

JCheckBox _alignVariablesCheckBox

_indentCaseSwitchCheckBox

JCheckBox _indentCaseSwitchCheckBox

_indentContinuationCheckBox

JCheckBox _indentContinuationCheckBox

_indentContinuationOperatorCheckBox

JCheckBox _indentContinuationOperatorCheckBox

_indentExtendsCheckBox

JCheckBox _indentExtendsCheckBox

_indentFirstColumnCheckBox

JCheckBox _indentFirstColumnCheckBox

_indentImplementsCheckBox

JCheckBox _indentImplementsCheckBox

_indentLabelsCheckBox

JCheckBox _indentLabelsCheckBox

_indentMethodCallCheckBox

JCheckBox _indentMethodCallCheckBox

_indentParametersCheckBox

JCheckBox _indentParametersCheckBox

_indentThrowsCheckBox

JCheckBox _indentThrowsCheckBox

_indentUsingLeadingTabsCheckBox

JCheckBox _indentUsingLeadingTabsCheckBox

_indentUsingTabsCheckBox

JCheckBox _indentUsingTabsCheckBox

_standardIndentCheckBox

JCheckBox _standardIndentCheckBox

_continuationIndentComboBox

JComboBox _continuationIndentComboBox

_endlineIndentComboBox

JComboBox _endlineIndentComboBox

_indentComboBox

JComboBox _indentComboBox

_indentExtendsComboBox

JComboBox _indentExtendsComboBox

_indentImplementsComboBox

JComboBox _indentImplementsComboBox

_indentThrowsComboBox

JComboBox _indentThrowsComboBox

_leadingIndentComboBox

JComboBox _leadingIndentComboBox

_tabSizeComboBox

JComboBox _tabSizeComboBox

_tabbedPane

JTabbedPane _tabbedPane

Class de.hunsicker.jalopy.swing.JavadocSettingsPage implements Serializable

Serialized Fields

_inlineTagsList

de.hunsicker.jalopy.swing.AddRemoveList _inlineTagsList

_standardTagsList

de.hunsicker.jalopy.swing.AddRemoveList _standardTagsList

_tableModel

de.hunsicker.jalopy.swing.JavadocSettingsPage.DataModel _tableModel

_checkTagsCheckBox

JCheckBox _checkTagsCheckBox

_checkThrowsTagsCheckBox

JCheckBox _checkThrowsTagsCheckBox

_createInnerCheckBox

JCheckBox _createInnerCheckBox

_parseCheckBox

JCheckBox _parseCheckBox

_singleLineFieldCommentsCheckBox

JCheckBox _singleLineFieldCommentsCheckBox

_matcher

PatternMatcher _matcher

_bottomTextPattern

Pattern _bottomTextPattern

_exceptionPattern

Pattern _exceptionPattern

_paramPattern

Pattern _paramPattern

_returnPattern

Pattern _returnPattern

_tagNamePattern

Pattern _tagNamePattern

_templatePattern

Pattern _templatePattern

_topTextPattern

Pattern _topTextPattern

_templatesContainer

de.hunsicker.jalopy.swing.JavadocSettingsPage.TemplateContainer _templatesContainer

_disposed

boolean _disposed

Class de.hunsicker.jalopy.swing.MessagesSettingsPage implements Serializable

Serialized Fields

_showStackTraceCheckBox

JCheckBox _showStackTraceCheckBox

_generalComboBox

JComboBox _generalComboBox

_javadocOutputComboBox

JComboBox _javadocOutputComboBox

_javadocParserComboBox

JComboBox _javadocParserComboBox

_outputComboBox

JComboBox _outputComboBox

_parserComboBox

JComboBox _parserComboBox

_transComboBox

JComboBox _transComboBox

Class de.hunsicker.jalopy.swing.MiscSettingsPage implements Serializable

Serialized Fields

_arrayBracketsAfterIdentifierCheckBox

JCheckBox _arrayBracketsAfterIdentifierCheckBox

_forceCheckBox

JCheckBox _forceCheckBox

_historyCommentCheckBox

JCheckBox _historyCommentCheckBox

_historyFileCheckBox

JCheckBox _historyFileCheckBox

_insertConditionalCheckBox

JCheckBox _insertConditionalCheckBox

_insertParenCheckBox

JCheckBox _insertParenCheckBox

_insertTrailingNewlineCheckBox

JCheckBox _insertTrailingNewlineCheckBox

_insertUIDCheckBox

JCheckBox _insertUIDCheckBox

_historyMethodComboBox

JComboBox _historyMethodComboBox

_backupSlider

JSlider _backupSlider

_threadSlider

JSlider _threadSlider

_directoryTextField

JTextField _directoryTextField

Class de.hunsicker.jalopy.swing.NamingSettingsPage implements Serializable

Serialized Fields

_patternList

JList _patternList

Class de.hunsicker.jalopy.swing.ProgressPanel implements Serializable

Serialized Fields

_errors

de.hunsicker.jalopy.swing.CountLabel _errors
Label to display the errors count.

_files

de.hunsicker.jalopy.swing.CountLabel _files
Label to display the files count.

_warnings

de.hunsicker.jalopy.swing.CountLabel _warnings
Label to display the warnings count.

_stopButton

JButton _stopButton
The cancel button to interrupt a time-consuming operation.

_text

JLabel _text
The current message text.

_progressBar

JProgressBar _progressBar
Progress bar to use.

_isStopped

boolean _isStopped
Did the user pressed the stop button?

Class de.hunsicker.jalopy.swing.ProjectSettingsPage implements Serializable

Serialized Fields

_projectsList

de.hunsicker.jalopy.swing.AddRemoveList _projectsList

_addButton

JButton _addButton

_removeButton

JButton _removeButton

Class de.hunsicker.jalopy.swing.SettingsDialog implements Serializable

Serialized Fields

_applyButton

JButton _applyButton
Button to save the state, don't closes the dialog.

_cancelButton

JButton _cancelButton
Button to discard changes and close the dialog.

_okButton

JButton _okButton
Button to close the dialog, the options will be saved.

_preferencesContainer

de.hunsicker.jalopy.swing.SettingsContainer _preferencesContainer
The container that contains the tree and page views.

Class de.hunsicker.jalopy.swing.SortingSettingsPage implements Serializable

Serialized Fields

_sortCheckBox

JCheckBox _sortCheckBox

_sortModifiersCheckBox

JCheckBox _sortModifiersCheckBox

_tabbedPane

JTabbedPane _tabbedPane

_data

List _data
The data stored in the table.

_modifiersData

List _modifiersData

_table

de.hunsicker.jalopy.swing.TableList _table

Class de.hunsicker.jalopy.swing.ValidationException implements Serializable

Class de.hunsicker.jalopy.swing.WhitespaceSettingsPage implements Serializable

Serialized Fields

_assignmentOperatorsCheckBox

JCheckBox _assignmentOperatorsCheckBox

_bangCheckBox

JCheckBox _bangCheckBox

_bitwiseOperatorsCheckBox

JCheckBox _bitwiseOperatorsCheckBox

_bracesCheckBox

JCheckBox _bracesCheckBox

_bracketsCheckBox

JCheckBox _bracketsCheckBox

_bracketsTypesCheckBox

JCheckBox _bracketsTypesCheckBox

_caseColonCheckBox

JCheckBox _caseColonCheckBox

_castCheckBox

JCheckBox _castCheckBox

_commaCheckBox

JCheckBox _commaCheckBox

_logicalOperatorsCheckBox

JCheckBox _logicalOperatorsCheckBox

_mathematicalOperatorsCheckBox

JCheckBox _mathematicalOperatorsCheckBox

_methodCallCheckBox

JCheckBox _methodCallCheckBox

_methodDefCheckBox

JCheckBox _methodDefCheckBox

_paddingBracesCheckBox

JCheckBox _paddingBracesCheckBox

_paddingBracketsCheckBox

JCheckBox _paddingBracketsCheckBox

_paddingCastCheckBox

JCheckBox _paddingCastCheckBox

_paddingParenCheckBox

JCheckBox _paddingParenCheckBox

_relationalOperatorsCheckBox

JCheckBox _relationalOperatorsCheckBox

_semicolonCheckBox

JCheckBox _semicolonCheckBox

_shiftOperatorsCheckBox

JCheckBox _shiftOperatorsCheckBox

_statementCheckBox

JCheckBox _statementCheckBox

Class de.hunsicker.jalopy.swing.WrappingSettingsPage implements Serializable

Serialized Fields

_alignExpressionCheckBox

JCheckBox _alignExpressionCheckBox

_alignMethodCallParamsCheckBox

JCheckBox _alignMethodCallParamsCheckBox

_alignMethodCallParamsIfNestedCheckBox

JCheckBox _alignMethodCallParamsIfNestedCheckBox

_alignParamsCheckBox

JCheckBox _alignParamsCheckBox

_alignValuesCheckBox

JCheckBox _alignValuesCheckBox

_wrapAfterAssignCheckBox

JCheckBox _wrapAfterAssignCheckBox

_wrapAfterChainedCallCheckBox

JCheckBox _wrapAfterChainedCallCheckBox

_wrapAfterCheckBox

JCheckBox _wrapAfterCheckBox

_wrapAfterExtendsCheckBox

JCheckBox _wrapAfterExtendsCheckBox

_wrapAfterImplementsCheckBox

JCheckBox _wrapAfterImplementsCheckBox

_wrapAfterLeftParenCheckBox

JCheckBox _wrapAfterLeftParenCheckBox

_wrapAfterThrowsTypesCheckBox

JCheckBox _wrapAfterThrowsTypesCheckBox

_wrapAllExtendsTypesExceedCheckBox

JCheckBox _wrapAllExtendsTypesExceedCheckBox

_wrapAllImplementsTypesExceedCheckBox

JCheckBox _wrapAllImplementsTypesExceedCheckBox

_wrapAllParamIfFirstCheckBox

JCheckBox _wrapAllParamIfFirstCheckBox

_wrapAllThrowsTypesIfExceedCheckBox

JCheckBox _wrapAllThrowsTypesIfExceedCheckBox

_wrapArraysCheckBox

JCheckBox _wrapArraysCheckBox

_wrapAsNeededCheckBox

JCheckBox _wrapAsNeededCheckBox

_wrapBeforeCheckBox

JCheckBox _wrapBeforeCheckBox

_wrapBeforeExtendsCheckBox

JCheckBox _wrapBeforeExtendsCheckBox

_wrapBeforeImplementsCheckBox

JCheckBox _wrapBeforeImplementsCheckBox

_wrapBeforeRightParenCheckBox

JCheckBox _wrapBeforeRightParenCheckBox

_wrapBeforeThrowsCheckBox

JCheckBox _wrapBeforeThrowsCheckBox

_wrapGroupingParenCheckBox

JCheckBox _wrapGroupingParenCheckBox

_wrapLabelsCheckBox

JCheckBox _wrapLabelsCheckBox

_wrapLinesCheckBox

JCheckBox _wrapLinesCheckBox

_arraysElementsComboBox

JComboBox _arraysElementsComboBox

_indentDeepComboBox

JComboBox _indentDeepComboBox

_lineLengthComboBox

JComboBox _lineLengthComboBox

_tabbedPane

JTabbedPane _tabbedPane


Class de.hunsicker.util.ChainingRuntimeException implements Serializable

Serialized Fields

cause

Throwable cause
Causing throwable.


Jalopy 1.0b10

Submit a bug or feature.

For further information and documentation, visit the official Jalopy website.
This page generated: November 14 2002