Hi,
I'm pleased to announce the first public release of WCT - Web Components
Toolkit.
WCT is a component library for servlet development, which supports an API
similar to the Java language's Swing library.
Using WCT one can write servlets like that:
import org.wct.*;
public class MyApp extends Frame {
public MyApp(String title) {
super(title);
setLayoutManager(new BorderLayout());
final Label l1=new Label("This is a simple application...");
add(l1,BorderLayout.CENTER);
Button b1=new Button("More..");
b1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
l1.setText("...but it shows the essential WCT features!");
}
});
add(b1,BorderLayout.SOUTH);
}
public static void main(String[] args) {
MyApp my=new MyApp("Sample Application");
my.show();
}
}
WCT currently supports the following components:
List
Button
CheckBox
RadioButton
TextField
TextArea
PasswordField
Table
Image
Frame
And the following Layout Managers:
FlowLayout
BorderLayout
GridLayout
GridBaglayout
WCT is released under the GNU Lesser General Public License.
Please visit the wct homepage at http://www.logicstyle.com/projects/wct for
live demos, downloads and documentation.
Regards,
Juliano Viana
WCT developer.
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html