Package fr.igred.omero.annotations
Interface TextualAnnotation
-
- All Superinterfaces:
Annotation
,ContainerLinked
,HCSLinked
,ImageLinked
,RemoteObject
- All Known Implementing Classes:
TextualAnnotationWrapper
public interface TextualAnnotation extends Annotation
Interface to handle Textual Annotations on OMERO.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextualAnnotationData
asDataObject()
Returns aTextualAnnotationData
corresponding to the handled object.java.lang.String
getText()
Returns the text of this annotation.void
setText(java.lang.String text)
Sets the text.-
Methods inherited from interface fr.igred.omero.annotations.Annotation
countAnnotationLinks, getDescription, getFolders, getLastModified, getNameSpace, setDescription, setNameSpace
-
Methods inherited from interface fr.igred.omero.ContainerLinked
getDatasets, getProjects
-
Methods inherited from interface fr.igred.omero.HCSLinked
getPlateAcquisitions, getPlates, getScreens, getWells
-
Methods inherited from interface fr.igred.omero.ImageLinked
getImages
-
Methods inherited from interface fr.igred.omero.RemoteObject
canAnnotate, canChgrp, canChown, canDelete, canEdit, canLink, getCreated, getGroupId, getId, getOwner, saveAndUpdate
-
-
-
-
Method Detail
-
asDataObject
TextualAnnotationData asDataObject()
Returns aTextualAnnotationData
corresponding to the handled object.- Specified by:
asDataObject
in interfaceAnnotation
- Specified by:
asDataObject
in interfaceRemoteObject
- Returns:
- See above.
-
getText
java.lang.String getText()
Returns the text of this annotation.- Returns:
- See above.
-
setText
void setText(java.lang.String text)
Sets the text.- Parameters:
text
- The value to set.
-
-