Ok... check this out.. http://www.oop.com/TechnologiesHammock.jsp OK. Essentially it is like ECS. The only difference is that instead of building your HTML output like a DOM you build it like a Swing object: ----------------------------------------------- public class SimpleForm_2 extends HForm{ HLabel lblHello = new HLabel("Hello, world!"); HLabel lblTotal = new HLabel(); HTextField txtMyTextField = new HTextField(); public SimpleForm_2(){ add(lblHello); txtMyTextField.setWidth(20); txtMyTextField.setMaxLength(10); add(txtMyTextField); add(lblTotal); lblTotal.setText( "There are " + getComponentCount() +" Components on this form"); } } ----------------------------------------------- If you use Swing or just want to build nighter components it is nice I guess. Probably not compelling enough to actually do anything. You can do all this with ECS right now if you code it in an OO/Swing way. If you use things like Turbine and share your screens you can accomplish the same code reuse. Of course it is closed source and costs $499 so .... :) Kevin -- Kevin A Burton (e-mail: [EMAIL PROTECTED], UIN: 73488596, ZKey: burtonator) http://relativity.yi.org Message to SUN: "Please Open Source Java!" To fight and conquer in all your battles is not supreme excellence; supreme excellence consists in breaking the enemy's resistance without fighting. - Sun Tzu, 300 B.C. -- ------------------------------------------------------------ To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Archives and Other: <http://java.apache.org/main/mail.html> Problems?: [EMAIL PROTECTED]
