Convenience method for Container clients. Recommended
Implementation:
ExpressoComponent getComponent(String componentName) {
return this.getContainerImplementation().getComponent(componentName);
}
Typical usage from an ExpressoComponent.
This example gets the default Data Context for a component within the context
DataContext default = (DataContext)this.getParent().locateComponent("default");
Parameters: componentName - The name of the component to retrieve an ExpressoComponent or null if the specified name doesn't exist |