|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use INamespace | |
---|---|
org.apache.tapestry | Tapestry is a comprehensive web application framework, written in Java. |
org.apache.tapestry.engine | Implementations of the IEngine interface, including
the standard implementation:
BaseEngine . |
org.apache.tapestry.link | Components for creating links on the page that trigger application behavior when clicked. |
org.apache.tapestry.pageload | Classes used when loading pages (and thier heirarchies of components) from thier specifications, as well as organizaing thier templates. |
org.apache.tapestry.resolver | Namespace resolution of pages/components/etc.. |
org.apache.tapestry.services | Interfaces for Tapestry-related HiveMind services. |
org.apache.tapestry.services.impl | Service implementations. |
org.apache.tapestry.util | A general set of resuable classes and utilities for creating Internet and XML applications. |
Uses of INamespace in org.apache.tapestry |
---|
Methods in org.apache.tapestry that return INamespace | |
---|---|
INamespace |
INamespace.getChildNamespace(String id)
Returns a namespace contained by this namespace. |
INamespace |
AbstractComponent.getNamespace()
|
INamespace |
IComponent.getNamespace()
Returns the INamespace in which the component was defined (as an alias). |
INamespace |
INamespace.getParentNamespace()
Returns the parent namespace; the namespace which contains this namespace. |
Methods in org.apache.tapestry with parameters of type INamespace | |
---|---|
void |
AbstractComponent.setNamespace(INamespace namespace)
|
void |
IComponent.setNamespace(INamespace namespace)
Sets the INamespace for the component. |
Uses of INamespace in org.apache.tapestry.engine |
---|
Classes in org.apache.tapestry.engine that implement INamespace | |
---|---|
class |
Namespace
Implementation of INamespace that works with a
NamespaceResources to obtain page and
component specifications as needed. |
Methods in org.apache.tapestry.engine that return INamespace | |
---|---|
INamespace |
ISpecificationSource.getApplicationNamespace()
Returns the INamespace for the application. |
INamespace |
Namespace.getChildNamespace(String id)
|
INamespace |
ISpecificationSource.getFrameworkNamespace()
Returns the INamespace for the framework itself. |
INamespace |
Namespace.getParentNamespace()
|
Methods in org.apache.tapestry.engine with parameters of type INamespace | |
---|---|
IPage |
IPageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
Invoked by the IPageSource to load a specific page. |
Constructors in org.apache.tapestry.engine with parameters of type INamespace | |
---|---|
Namespace(String id,
INamespace parent,
ILibrarySpecification specification,
NamespaceResources resources)
|
Uses of INamespace in org.apache.tapestry.link |
---|
Methods in org.apache.tapestry.link that return INamespace | |
---|---|
abstract INamespace |
ExternalLink.getTargetNamespace()
|
abstract INamespace |
PageLink.getTargetNamespace()
|
Uses of INamespace in org.apache.tapestry.pageload |
---|
Methods in org.apache.tapestry.pageload that return INamespace | |
---|---|
INamespace |
ComponentClassProviderContext.getNamespace()
Returns the namespace containing the page. |
Methods in org.apache.tapestry.pageload with parameters of type INamespace | |
---|---|
IPage |
PageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
|
Constructors in org.apache.tapestry.pageload with parameters of type INamespace | |
---|---|
ComponentClassProviderContext(String pageName,
IComponentSpecification pageSpecification,
INamespace namespace)
|
Uses of INamespace in org.apache.tapestry.resolver |
---|
Methods in org.apache.tapestry.resolver that return INamespace | |
---|---|
protected INamespace |
AbstractSpecificationResolver.findNamespaceForId(INamespace containerNamespace,
String libraryId)
|
protected INamespace |
AbstractSpecificationResolver.getApplicationNamespace()
|
protected INamespace |
AbstractSpecificationResolver.getFrameworkNamespace()
|
INamespace |
AbstractSpecificationResolver.getNamespace()
Returns the resolve namespace. |
INamespace |
ComponentSpecificationResolver.getNamespace()
The namespace containing the resolved component. |
INamespace |
PageSpecificationResolver.getNamespace()
Returns the namespace containing the page. |
Methods in org.apache.tapestry.resolver with parameters of type INamespace | |
---|---|
IComponentSpecification |
ISpecificationResolverDelegate.findComponentSpecification(IRequestCycle cycle,
INamespace namespace,
String type)
Invoked by PageSpecificationResolver to find the indicated
component specification. |
protected INamespace |
AbstractSpecificationResolver.findNamespaceForId(INamespace containerNamespace,
String libraryId)
|
IComponentSpecification |
ISpecificationResolverDelegate.findPageSpecification(IRequestCycle cycle,
INamespace namespace,
String simplePageName)
Invoked by PageSpecificationResolver to find the indicated page
specification. |
void |
ComponentSpecificationResolverImpl.resolve(IRequestCycle cycle,
INamespace containerNamespace,
String type,
org.apache.hivemind.Location location)
Passed the namespace of a container (to resolve the type in) and the type to resolve, performs the processing. |
void |
ComponentSpecificationResolver.resolve(IRequestCycle cycle,
INamespace containerNamespace,
String type,
org.apache.hivemind.Location location)
Passed the namespace of a container (to resolve the type in) and the type to resolve, performs the processing. |
void |
ComponentSpecificationResolverImpl.resolve(IRequestCycle cycle,
INamespace containerNamespace,
String libraryId,
String type,
org.apache.hivemind.Location location)
Like ComponentSpecificationResolverImpl.resolve(org.apache.tapestry.IRequestCycle, org.apache.tapestry.INamespace, java.lang.String, Location) ,
but used when the type has already been parsed into a library id and a simple type. |
void |
ComponentSpecificationResolver.resolve(IRequestCycle cycle,
INamespace containerNamespace,
String libraryId,
String type,
org.apache.hivemind.Location location)
Like ComponentSpecificationResolver.resolve(org.apache.tapestry.IRequestCycle, org.apache.tapestry.INamespace, java.lang.String, Location) ,
but used when the type has already been parsed into a library id and a simple type. |
protected void |
AbstractSpecificationResolver.setNamespace(INamespace namespace)
Invoked in subclasses to identify the resolved namespace. |
Uses of INamespace in org.apache.tapestry.services |
---|
Methods in org.apache.tapestry.services with parameters of type INamespace | |
---|---|
String |
ComponentPropertySource.getLocalizedNamespaceProperty(INamespace namespace,
Locale locale,
String propertyName)
As with ComponentPropertySource.getLocalizedComponentProperty(IComponent, Locale, String) , but with a
INamespace . |
String |
ComponentPropertySource.getNamespaceProperty(INamespace namespace,
String propertyName)
Returns the property value for a particular named meta-data property of the namespace. |
Uses of INamespace in org.apache.tapestry.services.impl |
---|
Methods in org.apache.tapestry.services.impl that return INamespace | |
---|---|
INamespace |
SpecificationSourceImpl.getApplicationNamespace()
|
INamespace |
SpecificationSourceImpl.getFrameworkNamespace()
|
Methods in org.apache.tapestry.services.impl with parameters of type INamespace | |
---|---|
String |
ComponentPropertySourceImpl.getLocalizedNamespaceProperty(INamespace namespace,
Locale locale,
String propertyName)
|
String |
ComponentPropertySourceImpl.getNamespaceProperty(INamespace namespace,
String propertyName)
|
Uses of INamespace in org.apache.tapestry.util |
---|
Constructors in org.apache.tapestry.util with parameters of type INamespace | |
---|---|
ComponentAddress(INamespace namespace,
String pageName,
String idPath)
Creates a new ComponentAddress using the given Page Name and ID Path relative on the provided Namespace. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |