Notes
Sourceforge project site
here; username=jim
CVS Log with commit comments
Here.
Finally got a working jar, zip is
Here(On Campus)
(it shows only the last months activity by default, you have to change the date filter in order to get everything)
Files
Questions
I've been trying to find some sort of auto-resize function for java.swing.component classes, and I've been kind of out of luck so far. Is there a way to specify object behavior on resize?
Answered
How can you require subclasses to implement specific methods? I want all of the database objects that extend DBObject to have certain specific methods, and I'd like to have those structural components to be required just to allow for easier development.
Answer: See for example
http://www.codeguru.com/java/tij/tij0079.shtml on "abstract methods". Declaring a method "abstract" in the parent class forces the child to implement it. Or you can have the parent class's method thrown an error (though that won't be seen until runtime, not compiletime). You also need to call the whole class "abstract" if it has any abstract methods, since it can't be instantiated - only its children can.
Archive
1/04/07
- Consider.zip (note, this doesn't contain the documentation and testing updates to the base package. This package needs to be combined with the one on my home desktop)
- Consider.zip (Base package for combination)
2/26/07
2/8/07
Stuff
Resources