154 The XML Files: Develo pment of XML/XSL Applications Using WebS phere Studio
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
*/
public class passenger {
private String name;
private String membership;
public passenger()
{
}
public String getName()
{
return name;
}
public void setName(String aName)
{
name=aName;
}
public String getMembership()
{
return membership;
}
public void setMembership(String aMem)
{ membership=aMem;
}
}
Several files are created in this generator:
򐂰Input XML Form: An XSL Stylesheet to render the JavaBean.
򐂰Result XSL: ResultXSL Stylesheet that displays results from the underlying
JavaBean.
򐂰Splash screen: A splash screen to invoke the XSLServlet.
򐂰XSLServlet: This servlet applies the gen erated XSL to the DOM.
򐂰XML DOM: Produces a DOM from the JavaBean.
򐂰XML Schema: Produces an XML Schema from the JavaBean.