Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

de.nava.informa.core
Interface ChannelGroupIF  view ChannelGroupIF download ChannelGroupIF.java


public interface ChannelGroupIF

Interface to allow to implement a container of channels that may be used by a channel registry (through a front-end) or as the entry point for an application using this library. A ChannelGroupIF object may also reflect the root element of a XML file persisted from the channel object model.


Method Summary
 void add(ChannelIF channel)
           
 void addChild(ChannelGroupIF child)
           
 java.util.Collection getAll()
           
 ChannelIF getById(long id)
           
 java.util.Collection getChildren()
           
 long getId()
           
 ChannelGroupIF getParent()
           
 java.lang.String getTitle()
           
 void remove(ChannelIF channel)
           
 void removeChild(ChannelGroupIF child)
           
 void setId(long id)
           
 void setParent(ChannelGroupIF parent)
           
 void setTitle(java.lang.String title)
           
 

Method Detail

getId

public long getId()

setId

public void setId(long id)

getTitle

public java.lang.String getTitle()

setTitle

public void setTitle(java.lang.String title)

add

public void add(ChannelIF channel)

remove

public void remove(ChannelIF channel)

getAll

public java.util.Collection getAll()

getById

public ChannelIF getById(long id)

getParent

public ChannelGroupIF getParent()

setParent

public void setParent(ChannelGroupIF parent)

getChildren

public java.util.Collection getChildren()

addChild

public void addChild(ChannelGroupIF child)

removeChild

public void removeChild(ChannelGroupIF child)