Package org.sakaiproject.util
Interface MergedList.MergedEntry
-
- All Superinterfaces:
Comparable
- Enclosing class:
- MergedList
public static interface MergedList.MergedEntry extends Comparable
channel entry used to communicate with the Velocity templates when dealing with merged channels.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcompareTo(Object arg0)Implemented so that we can order by the group full name.StringgetDisplayName()Returns the display string for the channel.StringgetReference()Returns the ID of the group.booleanisMerged()Returns true if this channel is currently being merged.booleanisVisible()This returns true if this list item should be visible to the user.voidsetMerged(boolean b)Marks this channel as being merged or not.
-
-
-
Method Detail
-
getDisplayName
String getDisplayName()
Returns the display string for the channel.
-
getReference
String getReference()
Returns the ID of the group. (The ID is used as a key.)
-
isMerged
boolean isMerged()
Returns true if this channel is currently being merged.
-
setMerged
void setMerged(boolean b)
Marks this channel as being merged or not.
-
isVisible
boolean isVisible()
This returns true if this list item should be visible to the user.
-
compareTo
int compareTo(Object arg0)
Implemented so that we can order by the group full name.- Specified by:
compareToin interfaceComparable
-
-