Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.geotools.gui.swing: Javadoc index of package org.geotools.gui.swing.


Package Samples:

org.geotools.gui.swing

Classes:

AutoScroll: Scroll down a panel when new lines are added. This helper class require only the reference to the underlying javax.swing.BoundedRangeModel . If the model's value is equals to its maximal value and this maximal value increase, then this class increase the model's value as well. Example of use: DefaultTableModel table = new DefaultTableModel(); JScrollPane pane = new JScrollPane(new JTable(table)); AutoScroll autos = new AutoScrool(pane.getVerticalScrollBar().getModel()); // etc... // Now, add the new item to the table. The table // will be scrolled down automatically if needed. table.addRow(... ...
LoggingPanel: A panel displaying logging messages. The windows displaying Geotools's logging messages can be constructed with the following code: new LoggingPanel("org.geotools"). show 55 (null); This panel is initially set to listen to messages of level Level.CONFIG > Level.CONFIG 55 or higher. This level can be changed with getHandler() 55 .setLevel(aLevel) .
LoggingTableModel: A logging java.util.logging.Handler storing LogRecords as a javax.swing.table.TableModel . This model is used by LoggingPanel for displaying logging messages in a javax.swing.JTable .

Home | Contact Us | Privacy Policy | Terms of Service