| Home >> All >> org >> progeeks >> [ util Javadoc ] |
| | org.progeeks.util.beans.* (2) | | org.progeeks.util.log.* (1) | | org.progeeks.util.swing.* (2) |
org.progeeks.util: Javadoc index of package org.progeeks.util.
Package Samples:
org.progeeks.util.beans
org.progeeks.util.log
org.progeeks.util.swing
Classes:
Log: System logging class. Allows for multiple log levels and a hierarchy of named categories. Each category can have its own log format. Example code: public class MyTestClass { static Log log = Log.getLog( MyTestClass.class ); public void someMethod() { log.debug( "Entering someMethod()" ); log.info( "Some operation being performed." ); } }
ClassIterator: Given a class, this iterator will traverse the class hierarchy from the specified class, through its interfaces, to the parent class with its interfaces, and so on.
StandardBean: Interface denoting a standard bean implementation that provides methods for adding and removing property change listeners.
ObservableList: A java.util.List wrapper that will deliver the appropriate ListPropertyChangeEvents when the list is modified.
ObservableMap: A java.util.Map wrapper that will deliver the appropriate PropertyChangeEvents when the Map is modified.
BeanChangeSupport: Essentially, provides a subclassable version of PropertyChangeSupport.
SortedTableModel: Wraps a standard table model and provides a sorted view.
InspectionException: Runtime exception thrown by the Inspector class.
Inspector: A utility for doing simple Bean-like reflection.
TableUtils: Utility methods for JTables.
| Home | Contact Us | Privacy Policy | Terms of Service |