|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use View | |
com.tirsen.angkor | The core framework for Angkor. |
com.tirsen.angkor.jsp | Framework for using prerendered Angkor components in a JSP page. |
com.tirsen.angkor.table | The Table widget and its framework and models. |
com.tirsen.angkor.widget | The standard widgets in Angkor. |
Uses of View in com.tirsen.angkor |
Subinterfaces of View in com.tirsen.angkor | |
interface |
Window
|
Classes in com.tirsen.angkor that implement View | |
class |
Component
The default implementation of the View interface, implements a set of functionality usable by most widgets in Angkor. |
class |
EmptyView
An empty view, you can't see it, you can't touch it, you can't smell it, it doesn't exist |
class |
Page
TODO document Page |
class |
ViewLink
Refactor this a little bit. |
Fields in com.tirsen.angkor declared as View | |
static View |
EmptyView.EMPTY_VIEW
|
Methods in com.tirsen.angkor that return View | |
View |
ViewLink.getView()
|
View |
ViewLink.getContainer()
|
View |
ViewFactory.getView()
Two consecutive calls may or may not return the same instance. |
View |
View.getContainer()
|
View |
Page.getMainView()
|
View |
EmptyView.getContainer()
|
View |
Controller.getView()
This method is called by the framework at any time and any number of times during the render phase. |
abstract View |
Controller.createView()
|
View |
Component.getContainer()
|
Methods in com.tirsen.angkor with parameters of type View | |
void |
Window.registerParsingComponent(View component)
|
void |
ViewLink.setContainer(View container)
|
void |
View.setContainer(View container)
|
void |
RenderContext.registerParsingComponent(View view)
|
void |
Page.setMainView(View view)
|
void |
ErrorViewFactory.addError(java.lang.Throwable error,
View associatedView)
Add an error associated with a specific view. |
void |
EmptyView.setContainer(View container)
|
void |
Component.setContainer(View container)
|
void |
Application.registerPrerenderComponent(java.lang.String name,
View component)
Registers a new component. |
void |
Application.registerParsingComponent(View view)
|
void |
Application.allocateUniqueID(java.lang.String id,
View view)
|
Constructors in com.tirsen.angkor with parameters of type View | |
Page(View singleElement)
|
Uses of View in com.tirsen.angkor.jsp |
Methods in com.tirsen.angkor.jsp with parameters of type View | |
void |
PrerenderedComponentsRegistry.prerender(java.lang.String name,
View view)
|
Uses of View in com.tirsen.angkor.table |
Classes in com.tirsen.angkor.table that implement View | |
class |
Table
The table should support the following features: Implemented ones: Fetch values from the model. |
class |
TableScroller
|
Methods in com.tirsen.angkor.table that return View | |
View |
TableColumn.getCellView(Table view,
int row,
int column)
|
View |
TableCellViewFactory.getTableCellView(Table table,
ValueModel value,
int row,
int column)
|
View |
Table.getCellView(int row,
int column)
|
View |
ReadOnlyCellViewFactory.getTableCellView(Table table,
ValueModel value,
int row,
int column)
|
View |
FormatTableCellViewFactory.getTableCellView(Table table,
ValueModel value,
int row,
int column)
|
View |
DefaultTableCellViewFactory.getTableCellView(Table table,
ValueModel value,
int row,
int column)
|
Uses of View in com.tirsen.angkor.widget |
Classes in com.tirsen.angkor.widget that implement View | |
class |
Button
|
class |
CheckboxInput
|
class |
Container
Default implementation of a component that contains other components |
class |
Form
A form. |
class |
Image
|
class |
ImageButton
|
class |
ImageMap
|
static class |
ImageMap.Area
|
class |
Link
|
class |
Menu
|
class |
MenuItem
This has essentially been refactored into something almost exactly similar to Link .
|
class |
RadioButtons
|
class |
Section
|
class |
SectionLine
|
class |
TextInput
Takes input from user as text. |
class |
TextLabel
Displays text to the user. |
Methods in com.tirsen.angkor.widget with parameters of type View | |
void |
SectionLine.setContainer(View container)
|
void |
Section.add(int index,
View element)
Can only add Sections or SectionLines to a Section, if you try to add anything else it a SectionLine will be instantiated for it. |
static Link |
Link.createActionLink(Action action,
View content)
|
void |
ImageMap.add(int index,
View element)
|
void |
Container.add(int index,
View element)
Inserts main element at specified index. |
void |
Container.add(View element)
Add a main element. |
Constructors in com.tirsen.angkor.widget with parameters of type View | |
SectionLine(View singleElement)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |