Package com.caplin.streamlink
Interface ContainerElement
-
public interface ContainerElement
Representation of a subject that is within a container.
The
insert()
,remove()
ormove()
callbacks ofContainerModel
all supply aContainerElement
that applies to the action..
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getSubject()
Returns the subject of the element.SubjectType
getType()
Returns the SubjectType of the element.
-
-
-
Method Detail
-
getSubject
java.lang.String getSubject()
Returns the subject of the element.
- Returns:
- The subject.
-
getType
SubjectType getType()
Returns the SubjectType of the element.
- Returns:
- The SubjectType.
-
-