|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DataResource | |
|---|---|
| net.sf.mmm.util.nls.api | Provides the API for the native language support (NLS). |
| net.sf.mmm.util.nls.base | Contains the basis for implementations of the native language support (NLS) API. |
| net.sf.mmm.util.reflect.api | Provides the API for utilities that help to deal with reflection. |
| net.sf.mmm.util.reflect.base | Contains the base-implementations of the
Reflection-Util API. |
| net.sf.mmm.util.resource.api | Provides the API for utilities that help to load
resources from arbitrary
sources. |
| net.sf.mmm.util.resource.api.spi | Provides the SPI (service-provider-interface) for
data-resources. |
| net.sf.mmm.util.resource.base | Contains the base implementation of the
resource-API. |
| net.sf.mmm.util.resource.base.spi | Contains the base-implementation of the SPI (service-provider-interface) for
data-resources. |
| net.sf.mmm.util.resource.impl | Contains the implementation of the
resource-API. |
| net.sf.mmm.util.text.base | Provides the base-implementation of text-util API. |
| net.sf.mmm.util.xml.base.jaxb | Contains various XmlAdapter for
mapping of common data-types and data-containers with JAXB. |
| Uses of DataResource in net.sf.mmm.util.nls.api |
|---|
| Methods in net.sf.mmm.util.nls.api that return DataResource | |
|---|---|
DataResource |
NlsResourceLocator.findResource(Class<?> type,
String extension,
Locale locale)
Like NlsResourceLocator.findResource(String, String, Locale) but using a
Class as pathAndBasicName. |
DataResource |
NlsResourceLocator.findResource(String pathAndBasicName,
String extension,
Locale locale)
This method finds a localized resource. |
| Uses of DataResource in net.sf.mmm.util.nls.base |
|---|
| Methods in net.sf.mmm.util.nls.base that return DataResource | |
|---|---|
DataResource |
DefaultNlsResourceLocator.findResource(Class<?> type,
String extension,
Locale locale)
Like NlsResourceLocator.findResource(String, String, Locale) but using a
Class as pathAndBasicName. |
DataResource |
DefaultNlsResourceLocator.findResource(String pathAndBasicName,
String extension,
Locale locale)
This method finds a localized resource. |
| Uses of DataResource in net.sf.mmm.util.reflect.api |
|---|
| Methods in net.sf.mmm.util.reflect.api that return types with arguments of type DataResource | |
|---|---|
Set<DataResource> |
ReflectionUtil.findResources(String absoluteClasspath)
This method finds all resources that match to the given absoluteClasspath. |
Set<DataResource> |
ReflectionUtil.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtil.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
| Uses of DataResource in net.sf.mmm.util.reflect.base |
|---|
| Fields in net.sf.mmm.util.reflect.base with type parameters of type DataResource | |
|---|---|
private Set<DataResource> |
ResourceCollector.resourceSet
Set to collect resource-names. |
| Methods in net.sf.mmm.util.reflect.base that return types with arguments of type DataResource | |
|---|---|
Set<DataResource> |
ReflectionUtilImpl.findResources(String absoluteClasspath)
This method finds all resources that match to the given absoluteClasspath. |
Set<DataResource> |
ReflectionUtilImpl.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtilImpl.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
| Constructor parameters in net.sf.mmm.util.reflect.base with type arguments of type DataResource | |
|---|---|
ResourceCollector(Set<DataResource> resourceSet,
Filter<String> filter)
The constructor. |
|
| Uses of DataResource in net.sf.mmm.util.resource.api |
|---|
| Subinterfaces of DataResource in net.sf.mmm.util.resource.api | |
|---|---|
interface |
BrowsableResource
This is the interface for a DataResource that has higher-level
features and may contain other resources. |
| Methods in net.sf.mmm.util.resource.api that return DataResource | |
|---|---|
DataResource |
DataResourceFactory.createDataResource(String resourceUri)
This method creates a new DataResource from the given
resourceUri. |
DataResource |
DataResource.navigate(String resourcePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
| Uses of DataResource in net.sf.mmm.util.resource.api.spi |
|---|
| Classes in net.sf.mmm.util.resource.api.spi with type parameters of type DataResource | |
|---|---|
interface |
DataResourceProvider<R extends DataResource>
This is the interface for a provider of DataResource. |
| Uses of DataResource in net.sf.mmm.util.resource.base |
|---|
| Classes in net.sf.mmm.util.resource.base that implement DataResource | |
|---|---|
class |
AbstractBrowsableResource
This is the abstract base-implementation of BrowsableResource. |
protected class |
AbstractBrowsableResourceFactory.BrowsableResourceAdapter
This is an implementation of the BrowsableResource interface, that
adapts another BrowsableResource and
enhances the AbstractBrowsableResourceFactory.BrowsableResourceAdapter.navigate(String)-method to support switching schemes
via the BrowsableResourceFactory that created this
BrowsableResource. |
class |
AbstractBrowsableResourceProxy
This is an abstract implementation of the BrowsableResource interface
that delegates to another BrowsableResource. |
class |
AbstractDataResource
This is the abstract base implementation of the DataResource
interface. |
protected class |
AbstractDataResourceFactory.DataResourceAdapter
This is an implementation of the DataResource interface, that
adapts another DataResource and enhances the
AbstractDataResourceFactory.DataResourceAdapter.navigate(String)-method to support switching schemes via the
DataResourceFactory that created this DataResource. |
class |
AbstractDataResourceProxy
This is an abstract implementation of the DataResource interface that
delegates to another DataResource. |
class |
ClasspathResource
This is the implementation of the DataResource interface for a
resource that comes from the classpath. |
class |
FileResource
This is the implementation of the BrowsableResource interface for a
resource that is a regular File. |
class |
UrlResource
This is the implementation of the DataResource interface for a
resource that comes from an URL. |
| Fields in net.sf.mmm.util.resource.base declared as DataResource | |
|---|---|
private DataResource |
AbstractDataResourceFactory.DataResourceAdapter.delegate
|
| Fields in net.sf.mmm.util.resource.base with type parameters of type DataResource | |
|---|---|
private Map<String,DataResourceProvider<? extends DataResource>> |
AbstractBrowsableResourceFactory.schema2providerMap
|
| Methods in net.sf.mmm.util.resource.base that return DataResource | |
|---|---|
protected abstract DataResource |
AbstractDataResourceFactory.createDataResource(ResourceUri resourceUri)
This method creates the actual raw
DataResource. |
protected DataResource |
AbstractBrowsableResourceFactory.createDataResource(ResourceUri resourceUri)
This method creates the actual raw
DataResource. |
DataResource |
AbstractDataResourceFactory.createDataResource(String resourceUri)
This method creates a new DataResource from the given
resourceUri. |
protected DataResource |
AbstractDataResourceFactory.DataResourceAdapter.getDelegate()
This method gets the DataResource this proxy delegates to. |
protected abstract DataResource |
AbstractDataResourceProxy.getDelegate()
This method gets the DataResource this proxy delegates to. |
DataResource |
ClasspathResource.navigate(String resourcePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
DataResource |
UrlResource.navigate(String relativePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
DataResource |
AbstractDataResourceFactory.DataResourceAdapter.navigate(String relativePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
DataResource |
AbstractDataResourceProxy.navigate(String relativePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
DataResource |
AbstractBrowsableResourceFactory.BrowsableResourceAdapter.navigate(String relativePath)
This method creates a new DataResource pointing to the given
resourcePath based on this resource. |
| Methods in net.sf.mmm.util.resource.base that return types with arguments of type DataResource | |
|---|---|
protected DataResourceProvider<? extends DataResource> |
AbstractBrowsableResourceFactory.getProvider(ResourceUri resourceUri)
This method gets the provider for the given
resourceUri. |
| Method parameters in net.sf.mmm.util.resource.base with type arguments of type DataResource | |
|---|---|
void |
AbstractBrowsableResourceFactory.registerProvider(DataResourceProvider<? extends DataResource> provider)
This method registers the given provider. |
void |
AbstractBrowsableResourceFactory.registerProvider(DataResourceProvider<? extends DataResource> provider,
String schemaPrefix)
This method registers the given provider for the given
schemaPrefix. |
| Constructors in net.sf.mmm.util.resource.base with parameters of type DataResource | |
|---|---|
AbstractDataResourceFactory.DataResourceAdapter(DataResource delegate)
The constructor. |
|
| Uses of DataResource in net.sf.mmm.util.resource.base.spi |
|---|
| Classes in net.sf.mmm.util.resource.base.spi with type parameters of type DataResource | |
|---|---|
class |
AbstractDataResourceProvider<R extends DataResource>
This is the abstract base-implementation of the DataResourceProvider
interface. |
| Uses of DataResource in net.sf.mmm.util.resource.impl |
|---|
| Fields in net.sf.mmm.util.resource.impl with type parameters of type DataResource | |
|---|---|
private List<DataResourceProvider<? extends DataResource>> |
BrowsableResourceFactoryImpl.providers
|
| Methods in net.sf.mmm.util.resource.impl that return DataResource | |
|---|---|
protected DataResource |
DataResourceFactoryImpl.createDataResource(ResourceUri resourceUri)
Deprecated. This method creates the actual raw
DataResource. |
| Methods in net.sf.mmm.util.resource.impl that return types with arguments of type DataResource | |
|---|---|
protected List<DataResourceProvider<? extends DataResource>> |
BrowsableResourceFactoryImpl.getProviders()
|
| Method parameters in net.sf.mmm.util.resource.impl with type arguments of type DataResource | |
|---|---|
void |
BrowsableResourceFactoryImpl.setProviders(List<DataResourceProvider<? extends DataResource>> providers)
This method sets the List of providers
to register. |
| Uses of DataResource in net.sf.mmm.util.text.base |
|---|
| Methods in net.sf.mmm.util.text.base with parameters of type DataResource | |
|---|---|
protected Hyphenator |
HyphenatorBuilderImpl.createHyphenator(Locale locale,
DataResource resource)
This method creates a new Hyphenator instance from the
XML-configuration identified by the given DataResource. |
| Uses of DataResource in net.sf.mmm.util.xml.base.jaxb |
|---|
| Fields in net.sf.mmm.util.xml.base.jaxb declared as DataResource | |
|---|---|
private DataResource |
JaxbBeanHolderImpl.dataResource
The DataResource where the bean was loaded from. |
| Methods in net.sf.mmm.util.xml.base.jaxb that return DataResource | |
|---|---|
protected DataResource |
JaxbBeanHolderImpl.getDataResource()
This method gets the DataResource where the bean
was loaded from. |
| Methods in net.sf.mmm.util.xml.base.jaxb with parameters of type DataResource | |
|---|---|
T |
XmlBeanMapper.loadXml(DataResource resource)
This method loads the JAXB-bean as XML from the given resource
. |
void |
XmlBeanMapper.saveXml(T jaxbBean,
DataResource resource)
This method saves the given jaxbBean as XML to the given
outputStream. |
| Constructors in net.sf.mmm.util.xml.base.jaxb with parameters of type DataResource | |
|---|---|
JaxbBeanHolderImpl(BEAN bean,
DataResource resource,
XmlBeanMapper<BEAN> beanMapper)
The constructor. |
|
JaxbBeanHolderImpl(BEAN bean,
DataResource resource,
XmlBeanMapper<BEAN> beanMapper,
boolean allowSave)
The constructor. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||