Uses of Interface
org.ocap.hn.content.ContentEntry

Packages that use ContentEntry
org.ocap.hn.content   
org.ocap.hn.content.navigation Manages the content listings. 
 

Uses of ContentEntry in org.ocap.hn.content
 

Subinterfaces of ContentEntry in org.ocap.hn.content
 interface ContentContainer
          This class represents a container that contains one or more content entries.
 interface ContentItem
          This class represents a piece of content.
 interface ContentResource
          Abstract class representing a media stream/file.
 interface StreamableContentResource
          Abstract class representing content that can be streamed, e.g., MPEG file.
 

Classes in org.ocap.hn.content that implement ContentEntry
 class RecordingContentItem
          This class represents a content entry that is also a RecordingListEntry.
 

Methods in org.ocap.hn.content that return ContentEntry
 ContentEntry ContentContainer.getEntry(int n)
          Returns the nth ContentEntry in this container, from local cache only; does not cause network activity.
 ContentEntry[] ContentContainer.toArray()
          Returns an array of all ContentEntry in this ContentContainers including other ContentContainers.
 

Methods in org.ocap.hn.content with parameters of type ContentEntry
 boolean ContentContainer.addContentEntry(ContentEntry entry)
          Adds a ContentEntry to this ContentContainer.
 boolean ContentContainer.contains(ContentEntry entry)
          Checks whether the given ContentEntry is in this ContentContainer in local cache only.
 int ContentContainer.getIndex(ContentEntry n)
          Gets the index of the specified ContentEntry, from local cache only; does not cause network activity.
abstract  void ContentDatabase.removeEntry(ContentEntry entry)
          Removes the specified ContentEntry from this database.
 NetActionRequest ContentContainer.requestNewEntry(ContentEntry entry, ContentServer server, NetActionHandler handler)
          Requests a ContentEntry be created and added to a Container in a remote server.
 

Uses of ContentEntry in org.ocap.hn.content.navigation
 

Methods in org.ocap.hn.content.navigation that return ContentEntry
 ContentEntry ContentList.find(String[] keys, Object[] values)
          Finds the first ContentEntry which matches the search.
 ContentEntry ContentList.find(String key, Object value)
          Finds the first ContentEntry which identifier for the key 'key' equals the given object obj.
 

Methods in org.ocap.hn.content.navigation with parameters of type ContentEntry
 boolean DeviceFilter.accept(ContentEntry entry)
          Inherited from ContentDatabaseFilter.
abstract  boolean ContentDatabaseFilter.accept(ContentEntry entry)
          This method is called for every ContentEntry in the database/list this filter is applied to.