|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ChannelGroupIF | |
---|---|
de.nava.informa.core | This package contains interfaces for the news channel objects, it builds the core API for all news channel storage implementation. |
de.nava.informa.impl.basic | Provides an in-memory implementation of the core news channel interfaces. |
de.nava.informa.impl.hibernate | Provides an implementation of the core news channel interfaces using persistence mechanism provided by Hibernate (for more see http://www.hibernate.org. |
de.nava.informa.search | This package contains classes for creating and searching news items through a full-text index. |
de.nava.informa.utils | Provides utility classes that are convenient when handling the news channel object model. |
de.nava.informa.utils.manager | This package contains definition of Persistence Manager interface. |
de.nava.informa.utils.manager.hibernate | This package contains Hibernate implementation of Persistence Manager interface. |
de.nava.informa.utils.manager.memory | This package contains in-memory implementation of Persistence Manager interface. |
Uses of ChannelGroupIF in de.nava.informa.core |
---|
Methods in de.nava.informa.core that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
ChannelBuilderIF.createChannelGroup(String title)
|
ChannelGroupIF |
ChannelGroupIF.getParent()
|
Methods in de.nava.informa.core with parameters of type ChannelGroupIF | |
---|---|
void |
ChannelGroupIF.addChild(ChannelGroupIF child)
|
void |
ChannelGroupIF.removeChild(ChannelGroupIF child)
|
void |
ChannelGroupIF.setParent(ChannelGroupIF parent)
|
Uses of ChannelGroupIF in de.nava.informa.impl.basic |
---|
Classes in de.nava.informa.impl.basic that implement ChannelGroupIF | |
---|---|
class |
ChannelGroup
In-Memory implementation of the ChannelGroupIF interface. |
Methods in de.nava.informa.impl.basic that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
ChannelBuilder.createChannelGroup(String title)
|
ChannelGroupIF |
ChannelGroup.getParent()
|
Methods in de.nava.informa.impl.basic with parameters of type ChannelGroupIF | |
---|---|
void |
ChannelGroup.addChild(ChannelGroupIF child)
|
void |
ChannelGroup.removeChild(ChannelGroupIF child)
|
void |
ChannelGroup.setParent(ChannelGroupIF parent)
|
Constructors in de.nava.informa.impl.basic with parameters of type ChannelGroupIF | |
---|---|
ChannelGroup(long id,
ChannelGroupIF parent,
String title)
|
Uses of ChannelGroupIF in de.nava.informa.impl.hibernate |
---|
Methods in de.nava.informa.impl.hibernate that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
ChannelBuilder.createChannelGroup(String title)
|
ChannelGroupIF |
ChannelGroup.getParent()
|
Methods in de.nava.informa.impl.hibernate that return types with arguments of type ChannelGroupIF | |
---|---|
Collection<ChannelGroupIF> |
ChannelGroup.getChildren()
|
Methods in de.nava.informa.impl.hibernate with parameters of type ChannelGroupIF | |
---|---|
void |
ChannelGroup.addChild(ChannelGroupIF child)
|
void |
ChannelGroup.removeChild(ChannelGroupIF child)
|
void |
ChannelGroup.setParent(ChannelGroupIF group)
|
Method parameters in de.nava.informa.impl.hibernate with type arguments of type ChannelGroupIF | |
---|---|
void |
ChannelGroup.setChildren(Collection<ChannelGroupIF> aChildren)
|
Constructors in de.nava.informa.impl.hibernate with parameters of type ChannelGroupIF | |
---|---|
ChannelGroup(ChannelGroupIF parent,
String title)
|
Uses of ChannelGroupIF in de.nava.informa.search |
---|
Methods in de.nava.informa.search with parameters of type ChannelGroupIF | |
---|---|
List<ItemResult> |
ChannelSearcher.search(ChannelGroupIF channels,
String queryString)
Performs a query on the full-text index using the field ItemFieldConstants.TITLE_AND_DESC as the default search
field limited to ChannelSearcher.DEFAULT_MAX_RESULTS number of search
results. |
List<ItemResult> |
ChannelSearcher.search(ChannelGroupIF channels,
String queryString,
int maxResults)
Performs a query on the full-text index using the field ItemFieldConstants.TITLE_AND_DESC as the default search
field. |
Uses of ChannelGroupIF in de.nava.informa.utils |
---|
Methods in de.nava.informa.utils that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
ChannelRegistry.getChannelGroup()
|
Methods in de.nava.informa.utils with parameters of type ChannelGroupIF | |
---|---|
void |
ChannelRegistry.setChannelGroup(ChannelGroupIF channels)
|
Uses of ChannelGroupIF in de.nava.informa.utils.manager |
---|
Methods in de.nava.informa.utils.manager that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
PersistenceManagerIF.createGroup(String title)
Creates new group of channels in persistent storage. |
ChannelGroupIF[] |
PersistenceManagerIF.getGroups()
Returns the list of groups available in database. |
Methods in de.nava.informa.utils.manager with parameters of type ChannelGroupIF | |
---|---|
void |
PersistenceManagerIF.addChannelToGroup(ChannelIF channel,
ChannelGroupIF group)
Adds channel to the group . |
void |
PersistenceManagerIF.deleteGroup(ChannelGroupIF group)
Deletes group from persistent storage. |
void |
PersistenceManagerIF.mergeGroups(ChannelGroupIF first,
ChannelGroupIF second)
Takes channels from the second group and put them all in first
group. |
void |
PersistenceManagerIF.removeChannelFromGroup(ChannelIF channel,
ChannelGroupIF group)
Deletes channel from the group . |
void |
PersistenceManagerIF.updateGroup(ChannelGroupIF group)
Updates data in storage with data from the group object. |
Uses of ChannelGroupIF in de.nava.informa.utils.manager.hibernate |
---|
Methods in de.nava.informa.utils.manager.hibernate that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
SpringPersistenceManager.createGroup(String title)
|
ChannelGroupIF |
PersistenceManager.createGroup(String title)
Creates new group of channels in persistent storage. |
ChannelGroupIF |
NonCachingPersistenceManager.createGroup(String title)
Creates new group of channels in persistent storage. |
ChannelGroupIF[] |
SpringPersistenceManager.getGroups()
|
ChannelGroupIF[] |
PersistenceManager.getGroups()
Returns the list of groups available in database. |
ChannelGroupIF[] |
NonCachingPersistenceManager.getGroups()
Returns the list of groups available in database. |
Methods in de.nava.informa.utils.manager.hibernate with parameters of type ChannelGroupIF | |
---|---|
void |
SpringPersistenceManager.addChannelToGroup(ChannelIF channel,
ChannelGroupIF group)
|
void |
NonCachingPersistenceManager.addChannelToGroup(ChannelIF channel,
ChannelGroupIF group)
Adds channel to the group . |
void |
SpringPersistenceManager.deleteGroup(ChannelGroupIF group)
|
void |
PersistenceManager.deleteGroup(ChannelGroupIF group)
Deletes group from persistent storage. |
void |
NonCachingPersistenceManager.deleteGroup(ChannelGroupIF group)
Deletes group from persistent storage. |
void |
SpringPersistenceManager.mergeGroups(ChannelGroupIF first,
ChannelGroupIF second)
|
void |
PersistenceManager.mergeGroups(ChannelGroupIF first,
ChannelGroupIF second)
Takes channels from the second group and put them all in first
group. |
void |
NonCachingPersistenceManager.mergeGroups(ChannelGroupIF first,
ChannelGroupIF second)
Takes channels from the second group and put them all in first
group. |
void |
SpringPersistenceManager.removeChannelFromGroup(ChannelIF channel,
ChannelGroupIF group)
|
void |
NonCachingPersistenceManager.removeChannelFromGroup(ChannelIF channel,
ChannelGroupIF group)
Deletes channel from the group . |
void |
SpringPersistenceManager.updateGroup(ChannelGroupIF group)
|
void |
NonCachingPersistenceManager.updateGroup(ChannelGroupIF group)
Updates data in storage with data from the group object. |
Uses of ChannelGroupIF in de.nava.informa.utils.manager.memory |
---|
Methods in de.nava.informa.utils.manager.memory that return ChannelGroupIF | |
---|---|
ChannelGroupIF |
PersistenceManager.createGroup(String title)
Creates new group of channels in persistent storage. |
ChannelGroupIF[] |
PersistenceManager.getGroups()
Returns the list of groups available in database. |
ChannelGroupIF[] |
Channel.getParentGroups()
Returns the list of parent groups. |
Methods in de.nava.informa.utils.manager.memory with parameters of type ChannelGroupIF | |
---|---|
void |
PersistenceManager.addChannelToGroup(ChannelIF channel,
ChannelGroupIF group)
Adds channel to the group . |
void |
Channel.addParentGroup(ChannelGroupIF group)
Adds parent group to the list when channel is assigned to the new group. |
void |
PersistenceManager.deleteGroup(ChannelGroupIF group)
Deletes group from persistent storage. |
void |
PersistenceManager.mergeGroups(ChannelGroupIF first,
ChannelGroupIF second)
Takes channels from the second group and put them all in first
group. |
(package private) void |
PersistenceManager.moveChannels(ChannelGroupIF src,
ChannelGroupIF dest)
Moves channels from source to destination group. |
void |
PersistenceManager.removeChannelFromGroup(ChannelIF channel,
ChannelGroupIF group)
Deletes channel from the group . |
void |
Channel.removeParentGroup(ChannelGroupIF group)
Removes parent group from the list when channel is unassigned from it. |
void |
PersistenceManager.updateGroup(ChannelGroupIF group)
Updates data in storage with data from the group object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |