UML document templates

Some frequently used UML document templates: a zip with example documents Software Requirements Specification Template Vision and Scope Document Template Use Case Template Original source : http://www.processimpact.com/goodies.shtml

Javapolis 2007

I was lucky to be present 🙂 Conference Day 1 : Wednesday December 12th http://www.javapolis.com/confluence/display/JP07/Conf+Day+1 We focused on the Swing related sessions. JavaFX by Jim Weaver Very interesting speaker. Had the original...

Oracle and ON UPDATE CASCADE

We get errors from the following SQL on an Oracle database: ALTER TABLE table_nameADD CONSTRAINT constriant_name FOREIGN KEY (TERMINOLOGY_ID) REFERENCES TERMINOLOGY(TERMINOLOGY_ID) ON DELETE NO ACTION ON UPDATE CASCADE; Finally we found out...

ontology

I’m getting into new material right now. The OWL specification based on RDF and XML should give an idea about what I’m working with these days. And a wiki on Ontology in...

autocasting can be confusing

since java 1.5 there is a very easy autocasting for primitive datatypes to handle them as an object using the wrapper class. An example:List aList = new ArrayList();aList.add(1);aList.add(new Integer(2)); Now what when...

html, css, js resources

A list of great css only designs, all based on the same content:http://www.csszengarden.com A list of css resources:http://www.dezwozhere.com/links.html A graphical index of css layouts to forget all about tables and start using...