Serialized Form


Package com.googlecode.whatswrong

Class com.googlecode.whatswrong.AppearancePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

marginSlider

javax.swing.JSlider marginSlider

heightSlider

javax.swing.JSlider heightSlider

curved

javax.swing.JCheckBox curved

nlpCanvas

NLPCanvas nlpCanvas

anti

javax.swing.JCheckBox anti

Class com.googlecode.whatswrong.ControllerPanel extends javax.swing.JPanel implements Serializable

Class com.googlecode.whatswrong.CorpusLoader extends javax.swing.JPanel implements Serializable

Serialized Fields

selected

java.util.List<E> selected
The current selected corpus.


corpora

java.util.List<E> corpora
The set of all loaded corpora.


fileNames

javax.swing.DefaultListModel fileNames
The file names the corpora came from, stored in a list model.


formats

java.util.HashMap<K,V> formats
A mapping from names to CorpusFormat objects that will load corpora when the user chooses the corresponding name.


changeListeners

java.util.ArrayList<E> changeListeners
The list of listeners of this loader.


remove

javax.swing.JButton remove
The button that removes the selected corpus.


fileChooser

javax.swing.JFileChooser fileChooser
The file chooser dialog.


id

java.lang.String id
The id of this loader (used when loading properties from the user configuration file).


accessory

com.googlecode.whatswrong.CorpusLoader.LoadAccessory accessory
The file dialog accessory to define the range of instances.

Class com.googlecode.whatswrong.CorpusNavigator extends javax.swing.JPanel implements Serializable

Serialized Fields

guess

CorpusLoader guess
The loader for guess instances.


gold

CorpusLoader gold
The loader for gold instances.


canvas

NLPCanvas canvas
The canvas that renders the instances.


spinner

javax.swing.JSpinner spinner
The spinner that controls the current instance to be rendered by the canvas.


numberModel

javax.swing.SpinnerNumberModel numberModel
The number model that backs the spinner that controls the current instance to render.


indices

java.util.HashMap<K,V> indices
A mapping from corpora to index searchers that can be used to search the corpus.


diffCorpora

java.util.HashMap<K,V> diffCorpora
A mapping from pairs of corpora to index searchers that can be used to search the differences between the two corpora.


goldCorpora

java.util.HashSet<E> goldCorpora
The set of gold corpora.


guessCorpora

java.util.HashSet<E> guessCorpora
The set of guess corpora.


indexSearcher

org.apache.lucene.search.IndexSearcher indexSearcher
The current IndexSearcher (for the selected corpus/corpus pair).


analyzer

org.apache.lucene.analysis.Analyzer analyzer
The Analyzer for the search index.


searchButton

javax.swing.JButton searchButton
The search button that triggers the search process.


results

javax.swing.JList results
The list of search results.


search

javax.swing.JTextField search
The field for the search terms.


diff

NLPDiff diff
The NLPDiff object that compares pairs of instances.


spinnerPanel

javax.swing.JPanel spinnerPanel
The panel that controls the instance index spinner.


ofHowMany

javax.swing.JLabel ofHowMany
The label that shows how many results where found.


edgeTypeFilter

EdgeTypeFilter edgeTypeFilter
The EdgeTypeFilter that needs to be initialized when the navigator does not have a selected corpus and shows an example sentence.

Class com.googlecode.whatswrong.DependencyFilterPanel extends ControllerPanel implements Serializable

Class com.googlecode.whatswrong.EdgeTypeFilterPanel extends ControllerPanel implements Serializable

Serialized Fields

nlpCanvas

NLPCanvas nlpCanvas
The canvas to request the update after the filter has been changed.


types

javax.swing.JList types
The swing list of available edge types.


listModel

javax.swing.DefaultListModel listModel
The backing model for the swing list of edge types.


matches

javax.swing.JCheckBox matches
The checkbox for showing matches,


falsePositives

javax.swing.JCheckBox falsePositives
The checkbox for showing False Positives.


falseNegatives

javax.swing.JCheckBox falseNegatives
The checkbox for showing False Negatives.


justChanged

java.util.HashSet<E> justChanged
The set of types for which the state (filtered/not filtered) has just been changed through this controller.


edgeTypeFilter

EdgeTypeFilter edgeTypeFilter
The filter that this panel changes.

Class com.googlecode.whatswrong.FilterTextField extends javax.swing.JTextField implements Serializable

Serialized Fields

sendsNotificationForEachKeystroke

boolean sendsNotificationForEachKeystroke
Should notifications be send at each keystroke.


showingPlaceholderText

boolean showingPlaceholderText
Is the placeholder text currently shown.

Class com.googlecode.whatswrong.MoveWindow extends javax.swing.JWindow implements Serializable

Serialized Fields

location

java.awt.Point location

pressed

java.awt.event.MouseEvent pressed

contentPane

javax.swing.JPanel contentPane

titleLabel

javax.swing.JLabel titleLabel

Class com.googlecode.whatswrong.NLPCanvas extends javax.swing.JPanel implements Serializable

Serialized Fields

renderers

java.util.HashMap<K,V> renderers
Renderers for different render types.


textArea

javax.swing.JTextArea textArea
the text area to print messages to.


tokens

java.util.ArrayList<E> tokens
All tokens.


dependencies

java.util.LinkedList<E> dependencies
All edges.


image

java.awt.image.BufferedImage image
The image we render to.


usedTypes

java.util.Set<E> usedTypes
A collection of all edge types used in the current nlp instance.


usedProperties

java.util.Set<E> usedProperties
A collection of all token properties used in the current nlp instance.


changeListeners

java.util.ArrayList<E> changeListeners
The list of change listeners of this canvas.


instance

NLPInstance instance

filter

NLPInstanceFilter filter
The filter that processes the current instance before it is drawn.


renderer

NLPCanvasRenderer renderer
The renderer that draws the filtered NLPInstance to the canvas.


listeners

java.util.ArrayList<E> listeners
The set of listeners of this canvas.

Class com.googlecode.whatswrong.SimpleGridBagConstraints extends java.awt.GridBagConstraints implements Serializable

Class com.googlecode.whatswrong.TokenFilterPanel extends ControllerPanel implements Serializable

Serialized Fields

listModel

javax.swing.DefaultListModel listModel
The list model for the list of possible token properties.


list

javax.swing.JList list
The JList of possible token properties.


canvas

NLPCanvas canvas
The canvas which is to be updated whenever the filter is changed.


tokenFilter

TokenFilter tokenFilter
The filter this panel controls.

Class com.googlecode.whatswrong.WhatsWrongWithMyNLP extends javax.swing.JPanel implements Serializable

Serialized Fields

nlpCanvas

NLPCanvas nlpCanvas

nlpScrollPane

javax.swing.JScrollPane nlpScrollPane

Package com.googlecode.whatswrong.javautils

Class com.googlecode.whatswrong.javautils.Counter extends java.util.HashMap<T,java.lang.Integer> implements Serializable

Class com.googlecode.whatswrong.javautils.HashMultiMapArrayList extends java.util.HashMap<K,java.util.List<V>> implements Serializable

Serialized Fields

emptyList

java.util.List<E> emptyList
the empty list to be returned when there is key without values.

Class com.googlecode.whatswrong.javautils.HashMultiMapLinkedList extends java.util.HashMap<K,java.util.List<V>> implements Serializable

Serialized Fields

emptyList

java.util.List<E> emptyList
the empty list to be returned when there is key without values.



Copyright © 2010. All Rights Reserved.