com.salmonllc.wml |
This package contains WML GUI components that are created through JSP custom tags. The custom tags create the component from the com.salmonllc.wml apackage, but because the nature of the JSP implementation is different from the standard servlet implementation, some components (especially containers) needed their own implementation to function properly from custom tags.
In general you should not construct these components directly. Instead do it indirectly by placing the corresponding custom tags in a JSP Page. Every component in this package has a corresponding component in the com.salmonllc.wml. To dynamically create components in using Java code, use the classes in those packages instead.
|
Java Source File Name | Type | Comment |
WmlCard.java | Class | |
WmlDo.java | Class | This container will generate a Wml Do tag. |
WmlFormComponent.java | Class | |
WmlGo.java | Class | This container will construct a Wml Go Tag. |
WmlImage.java | Class | This type can be used to add an image to your page. |
WmlLink.java | Class | This container will construct an anchor tag with a Wml link (HREF) reference. |
WmlOption.java | Class | This container will construct an option in a wml select. |
WmlPasswordEdit.java | Class | This class is used for password style text input in a page. |
WmlSelect.java | Class | This class is used for Wml Select Component. |
WmlSubmit.java | Class | This container will construct an anchor tag with a html link (HREF) reference. |
WmlText.java | Class | This type can be used to add text to your page. |
WmlTextEdit.java | Class | This class is used for text input field. |