Interface ICompositeAnnotation
Defines the interface to the CompositeAnnotation, which uses combine collection of annotations into one group
Implements
Namespace:
Assembly: .dll
Syntax
public interface ICompositeAnnotation extends IAnnotation
Methods
getAnnotations()
Gets or sets the ObservableCollection of child annotations
Declaration
public abstract ObservableCollection<IAnnotation> getAnnotations()
Returns
| Type | Description |
|---|---|
| ObservableCollection<IAnnotation> | The ObservableCollection of child annotations |
setAnnotations(ObservableCollection<IAnnotation> annotations)
Sets the ObservableCollection of child annotations
Declaration
public abstract void setAnnotations(ObservableCollection<IAnnotation> annotations)
Parameters
| Type | Name | Description |
|---|---|---|
| ObservableCollection<IAnnotation> | annotations | The ObservableCollection of child annotations |