Uses of Interface
org.pentaho.reporting.libraries.repository.ContentLocation

Packages that use ContentLocation
org.pentaho.reporting.libraries.repository   
org.pentaho.reporting.libraries.repository.dummy   
org.pentaho.reporting.libraries.repository.email   
org.pentaho.reporting.libraries.repository.file   
org.pentaho.reporting.libraries.repository.stream   
org.pentaho.reporting.libraries.repository.zip   
org.pentaho.reporting.libraries.repository.zipreader   
org.pentaho.reporting.libraries.repository.zipwriter   
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository
 

Methods in org.pentaho.reporting.libraries.repository that return ContentLocation
static ContentLocation RepositoryUtilities.createLocation(Repository repository, java.lang.String[] name)
          Tries to create a content location with the given path-name in the repository.
 ContentLocation ContentLocation.createLocation(java.lang.String name)
          Creates a new content location in the current location.
 ContentLocation ContentEntity.getParent()
          Returns a reference to the parent location.
 ContentLocation Repository.getRoot()
          Returns the repositories root directory entry.
 

Constructors in org.pentaho.reporting.libraries.repository with parameters of type ContentLocation
DefaultNameGenerator(ContentLocation location)
           
DefaultNameGenerator(ContentLocation location, java.lang.String defaultNameHint)
           
DefaultNameGenerator(ContentLocation location, java.lang.String defaultNameHint, java.lang.String defaultSuffix)
           
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.dummy
 

Classes in org.pentaho.reporting.libraries.repository.dummy that implement ContentLocation
 class DummyContentLocation
          A dummy content location holds references to all dummy items.
 

Methods in org.pentaho.reporting.libraries.repository.dummy that return ContentLocation
 ContentLocation DummyContentLocation.createLocation(java.lang.String name)
          Creates a new content location in the current location.
 ContentLocation DummyContentItem.getParent()
          Returns the parent, if there is any.
 ContentLocation DummyContentLocation.getParent()
          Returns the parent, if there is any.
 ContentLocation DummyRepository.getRoot()
          Returns the repositories root directory entry.
 

Constructors in org.pentaho.reporting.libraries.repository.dummy with parameters of type ContentLocation
DummyContentItem(ContentLocation parent, java.lang.String name)
          Creates a new dummy item for the given parent and having the given name.
DummyContentLocation(ContentLocation parent, java.lang.String name)
          Creates a new DummyContentLocation with the given parent and name.
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.email
 

Classes in org.pentaho.reporting.libraries.repository.email that implement ContentLocation
 class EmailContentLocation
          Creation-Date: 17.09.2008, 15:00:00
 

Methods in org.pentaho.reporting.libraries.repository.email that return ContentLocation
 ContentLocation EmailContentLocation.createLocation(java.lang.String name)
           
 ContentLocation EmailContentLocation.getParent()
           
 ContentLocation EmailContentItem.getParent()
           
 ContentLocation EmailRepository.getRoot()
           
 

Constructors in org.pentaho.reporting.libraries.repository.email with parameters of type ContentLocation
EmailContentLocation(EmailRepository repository, ContentLocation parent, java.lang.String name)
           
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.file
 

Classes in org.pentaho.reporting.libraries.repository.file that implement ContentLocation
 class FileContentLocation
          A content-location that uses a directory as backend.
 

Methods in org.pentaho.reporting.libraries.repository.file that return ContentLocation
 ContentLocation FileContentLocation.createLocation(java.lang.String name)
          Creates a new content location in the current location.
 ContentLocation FileContentEntity.getParent()
          Returns a reference to the parent location.
 ContentLocation FileRepository.getRoot()
          Returns the repositories root directory entry.
 

Constructors in org.pentaho.reporting.libraries.repository.file with parameters of type ContentLocation
FileContentItem(ContentLocation parent, java.io.File backend)
          Creates a new file based content item for the given file and parent location.
FileContentLocation(ContentLocation parent, java.io.File backend)
          Creates a new location for the given parent and directory.
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.stream
 

Classes in org.pentaho.reporting.libraries.repository.stream that implement ContentLocation
 class StreamContentLocation
          A content location that wraps around a single stream.
 

Methods in org.pentaho.reporting.libraries.repository.stream that return ContentLocation
 ContentLocation StreamContentLocation.createLocation(java.lang.String name)
          This method always throws an exception, as stream-repositories cannot create sub-locations.
 ContentLocation StreamContentLocation.getParent()
          Returns a reference to the parent location.
 ContentLocation StreamContentItem.getParent()
          Returns a reference to the parent location.
 ContentLocation StreamRepository.getRoot()
          Returns the content root of this repository.
 

Constructors in org.pentaho.reporting.libraries.repository.stream with parameters of type ContentLocation
StreamContentItem(java.lang.String name, ContentLocation parent, WrappedInputStream inputStream, WrappedOutputStream outputStream)
          Creates a new stream-content item.
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.zip
 

Classes in org.pentaho.reporting.libraries.repository.zip that implement ContentLocation
 class ZipContentLocation
           
 

Methods in org.pentaho.reporting.libraries.repository.zip that return ContentLocation
 ContentLocation ZipContentLocation.createLocation(java.lang.String name)
           
 ContentLocation ZipContentLocation.getParent()
           
 ContentLocation ZipContentItem.getParent()
           
 ContentLocation ZipRepository.getRoot()
           
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.zipreader
 

Classes in org.pentaho.reporting.libraries.repository.zipreader that implement ContentLocation
 class ZipReadContentLocation
           
 

Methods in org.pentaho.reporting.libraries.repository.zipreader that return ContentLocation
 ContentLocation ZipReadContentLocation.createLocation(java.lang.String name)
           
 ContentLocation ZipReadContentItem.getParent()
           
 ContentLocation ZipReadContentLocation.getParent()
           
 ContentLocation ZipReadRepository.getRoot()
           
 

Uses of ContentLocation in org.pentaho.reporting.libraries.repository.zipwriter
 

Methods in org.pentaho.reporting.libraries.repository.zipwriter that return ContentLocation
 ContentLocation ZipContentLocation.createLocation(java.lang.String name)
           
 ContentLocation ZipContentLocation.getParent()
           
 ContentLocation ZipContentItem.getParent()
           
 ContentLocation ZipRepository.getRoot()
           
 

Constructors in org.pentaho.reporting.libraries.repository.zipwriter with parameters of type ContentLocation
ZipContentLocation(ZipRepository repository, ContentLocation parent, java.lang.String name)