cookswing verse SwiXML
[email protected] Fri, 26 Aug 2005 00:04:26 -0400
| Newsgroups | gmane.comp.embedded.carlsbad-cubes |
|---|---|
| Message-ID | <[email protected]> |
I just wrote my first cookswing helloWorld test application in eclipse and I
was wondering if you had to write a similar class which calls an xml
indirectly for SwiXML and what does that look like. Do they all begin life
like this?
import cookxml.cookswing.*;
public class HelloWorld
{
public static void main (String[] args)
{
CookSwing cookSwing = new CookSwing ();
cookSwing.render ("examples/xml/helloworld.xml").setVisible
(true);
}
}