| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> [ gui Javadoc ] |
com.puppycrawl.tools.checkstyle.gui: Javadoc index of package com.puppycrawl.tools.checkstyle.gui.
Package Samples:
com.puppycrawl.tools.checkstyle.gui: Contains the implementation of the Checkstyle framework.
Classes:
FileDrop: This class makes it easy to drag and drop files from the operating system to a Java program. Any java.awt.Component can be dropped onto, but only javax.swing.JComponent s will indicate the drop event with a changed border. To use this class, construct a new FileDrop by passing it the target component and a Listener to receive notification when file(s) have been dropped. Here is an example: JPanel myPanel = new JPanel(); new FileDrop( myPanel, new FileDrop.Listener() { public void filesDropped( java.io.File[] files ) { // handle file drop ... } // end filesDropped }); // end FileDrop.Listener You ...
TreeTableModel: TreeTableModel is the model used by a JTreeTable. It extends TreeModel to add methods for getting inforamtion about the set of columns each node in the TreeTableModel may have. Each column, like a column in a TableModel, has a name and a type associated with it. Each node in the TreeTableModel can return a value for each of the columns and set that value if isCellEditable() returns true.
TreeTableModelAdapter: This is a wrapper class takes a TreeTableModel and implements the table model interface. The implementation is trivial, with all of the event dispatching support provided by the superclass: the AbstractTableModel.
JTreeTable: This example shows how to create a simple JTreeTable component, by using a JTree as a renderer (and editor) for the cells in a particular column in the JTable.
ParseTreeInfoPanel: Displays information about a parse tree. The user can change the file that is parsed and displayed through a JFileChooser.
ParseTreeModel: The model that backs the parse tree in the GUI.
Main: Entry point for starting the checkstyle GUI.
AbstractCellEditor: Abstract implementation of a CellEditor.
AbstractTreeTableModel
| Home | Contact Us | Privacy Policy | Terms of Service |