|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use IComponentSpecification | |
|---|---|
| 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.enhance | Classes used for performing dynamic bytecode enhancement of component and page classes. |
| 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.parse | Classes used when parsing templates, application and component specifications. |
| 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.spec | Classes to represent application and component specifications. |
| org.apache.tapestry.test | Various testing utilities to make testing tapestry pages/components easier. |
| Uses of IComponentSpecification in org.apache.tapestry |
|---|
| Methods in org.apache.tapestry that return IComponentSpecification | |
|---|---|
IComponentSpecification |
INamespace.getComponentSpecification(String type)
Returns the path for the named component (within the namespace). |
IComponentSpecification |
INamespace.getPageSpecification(String name)
Returns the page specification of the named page (defined within the namespace). |
IComponentSpecification |
AbstractComponent.getSpecification()
|
IComponentSpecification |
IComponent.getSpecification()
Returns the specification which defines the component. |
| Methods in org.apache.tapestry with parameters of type IComponentSpecification | |
|---|---|
void |
AbstractComponent.finishLoad(IRequestCycle cycle,
IPageLoader loader,
IComponentSpecification specification)
Invokes AbstractComponent.finishLoad(). |
void |
IComponent.finishLoad(IRequestCycle cycle,
IPageLoader loader,
IComponentSpecification specification)
Allows a component to finish any setup after it has been constructed. |
void |
BaseComponent.finishLoad(IRequestCycle cycle,
IPageLoader loader,
IComponentSpecification specification)
Loads the template for the component, then invokes AbstractComponent.finishLoad(IRequestCycle, IPageLoader, IComponentSpecification). |
void |
INamespace.installComponentSpecification(String type,
IComponentSpecification specification)
Used to specify additional components beyond those that came from the namespace's specification. |
void |
INamespace.installPageSpecification(String pageName,
IComponentSpecification specification)
Used to specify additional pages beyond those that came from the namespace's specification. |
| Uses of IComponentSpecification in org.apache.tapestry.engine |
|---|
| Methods in org.apache.tapestry.engine that return IComponentSpecification | |
|---|---|
IComponentSpecification |
ISpecificationSource.getComponentSpecification(Resource specificationLocation)
Retrieves a component specification, parsing it as necessary. |
IComponentSpecification |
Namespace.getComponentSpecification(String alias)
|
IComponentSpecification |
ISpecificationSource.getPageSpecification(Resource specificationLocation)
Retrieves a page specification, parsing it as necessary. |
IComponentSpecification |
Namespace.getPageSpecification(String name)
|
| Methods in org.apache.tapestry.engine with parameters of type IComponentSpecification | |
|---|---|
Class |
IComponentClassEnhancer.getEnhancedClass(IComponentSpecification specification,
String className)
Deprecated. Used to access the class for a given component (or page). |
void |
Namespace.installComponentSpecification(String type,
IComponentSpecification specification)
|
void |
Namespace.installPageSpecification(String pageName,
IComponentSpecification specification)
|
IPage |
IPageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
Invoked by the IPageSourceto load a specific page. |
| Uses of IComponentSpecification in org.apache.tapestry.enhance |
|---|
| Constructors in org.apache.tapestry.enhance with parameters of type IComponentSpecification | |
|---|---|
EnhancementOperationImpl(ClassResolver classResolver,
IComponentSpecification specification,
Class baseClass,
ClassFactory classFactory,
Log log)
|
|
| Uses of IComponentSpecification in org.apache.tapestry.pageload |
|---|
| Methods in org.apache.tapestry.pageload that return IComponentSpecification | |
|---|---|
IComponentSpecification |
ComponentClassProviderContext.getSpecification()
Returns the specification defining the page. |
| Methods in org.apache.tapestry.pageload with parameters of type IComponentSpecification | |
|---|---|
IPage |
PageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
|
| Constructors in org.apache.tapestry.pageload with parameters of type IComponentSpecification | |
|---|---|
ComponentClassProviderContext(String pageName,
IComponentSpecification pageSpecification,
INamespace namespace)
|
|
| Uses of IComponentSpecification in org.apache.tapestry.parse |
|---|
| Methods in org.apache.tapestry.parse that return IComponentSpecification | |
|---|---|
IComponentSpecification |
ISpecificationParser.parseComponentSpecification(Resource resource)
|
IComponentSpecification |
SpecificationParser.parseComponentSpecification(Resource resource)
|
IComponentSpecification |
ISpecificationParser.parsePageSpecification(Resource resource)
|
IComponentSpecification |
SpecificationParser.parsePageSpecification(Resource resource)
|
| Uses of IComponentSpecification in org.apache.tapestry.resolver |
|---|
| Methods in org.apache.tapestry.resolver that return IComponentSpecification | |
|---|---|
IComponentSpecification |
ISpecificationResolverDelegate.findComponentSpecification(IRequestCycle cycle,
INamespace namespace,
String type)
Invoked by PageSpecificationResolver to find the indicated
component specification. |
IComponentSpecification |
ISpecificationResolverDelegate.findPageSpecification(IRequestCycle cycle,
INamespace namespace,
String simplePageName)
Invoked by PageSpecificationResolver to find the indicated page
specification. |
IComponentSpecification |
PageSpecificationResolver.getSpecification()
Returns the specification for the page. |
IComponentSpecification |
ComponentSpecificationResolver.getSpecification()
The specification resolved by the resolve() method. |
IComponentSpecification |
AbstractSpecificationResolver.getSpecification()
Returns the resolved specification. |
| Methods in org.apache.tapestry.resolver with parameters of type IComponentSpecification | |
|---|---|
protected void |
AbstractSpecificationResolver.setSpecification(IComponentSpecification specification)
Invoked in subclass to set the final specification the initial inputs are resolved to. |
| Uses of IComponentSpecification in org.apache.tapestry.services |
|---|
| Methods in org.apache.tapestry.services that return IComponentSpecification | |
|---|---|
IComponentSpecification |
NamespaceResources.getComponentSpecification(Resource libraryResource,
String specificationPath,
Location location)
Retrieves a component specification, parsing it as necessary. |
IComponentSpecification |
NamespaceResources.getPageSpecification(Resource libraryResource,
String specificationPath,
Location location)
Retrieves a page specification, parsing it as necessary. |
| Methods in org.apache.tapestry.services with parameters of type IComponentSpecification | |
|---|---|
ComponentConstructor |
ComponentConstructorFactory.getComponentConstructor(IComponentSpecification specification,
String className)
Passed a component specification and the base component class name, provides back an object used to instantiate instances of the component. |
| Uses of IComponentSpecification in org.apache.tapestry.services.impl |
|---|
| Methods in org.apache.tapestry.services.impl that return IComponentSpecification | |
|---|---|
IComponentSpecification |
SpecificationSourceImpl.getComponentSpecification(Resource resourceLocation)
Gets a component specification. |
IComponentSpecification |
NamespaceResourcesImpl.getComponentSpecification(Resource resource,
String specificationPath,
Location location)
|
IComponentSpecification |
SpecificationSourceImpl.getPageSpecification(Resource resourceLocation)
|
IComponentSpecification |
NamespaceResourcesImpl.getPageSpecification(Resource resource,
String specificationPath,
Location location)
|
protected IComponentSpecification |
SpecificationSourceImpl.parseSpecification(Resource resource,
boolean asPage)
|
| Methods in org.apache.tapestry.services.impl with parameters of type IComponentSpecification | |
|---|---|
ComponentConstructor |
ComponentConstructorFactoryImpl.getComponentConstructor(IComponentSpecification specification,
String className)
|
| Uses of IComponentSpecification in org.apache.tapestry.spec |
|---|
| Classes in org.apache.tapestry.spec that implement IComponentSpecification | |
|---|---|
class |
ComponentSpecification
A specification for a component, as read from an XML specification file. |
| Methods in org.apache.tapestry.spec that return IComponentSpecification | |
|---|---|
IComponentSpecification |
SpecFactory.createComponentSpecification()
Creates a concrete instance of IComponentSpecification. |
| Uses of IComponentSpecification in org.apache.tapestry.test |
|---|
| Methods in org.apache.tapestry.test with parameters of type IComponentSpecification | |
|---|---|
void |
CreatePropertyWorker.performEnhancement(EnhancementOperation op,
IComponentSpecification spec)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||