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: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:
http://archives.java.sun.com/jsp-interest.html
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.jsp
http://www.jguru.com/faq/index.jsp
http://www.jspinsider.com
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".