Package fr.igred.omero.annotations
Class TextualAnnotationWrapper
- java.lang.Object
-
- fr.igred.omero.GenericObjectWrapper<T>
-
- fr.igred.omero.annotations.GenericAnnotationWrapper<TextualAnnotationData>
-
- fr.igred.omero.annotations.TextualAnnotationWrapper
-
public class TextualAnnotationWrapper extends GenericAnnotationWrapper<TextualAnnotationData>
Class containing a TextualAnnotationData object.Wraps function calls to the TextualAnnotationData contained.
-
-
Field Summary
-
Fields inherited from class fr.igred.omero.GenericObjectWrapper
data
-
-
Constructor Summary
Constructors Constructor Description TextualAnnotationWrapper(String text)
Creates a new Textual Annotation with the provided text.TextualAnnotationWrapper(TextualAnnotationData object)
Constructor of the TextualAnnotationWrapper class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getText()
Returns the text of this annotation.void
setText(String text)
Sets the text.-
Methods inherited from class fr.igred.omero.annotations.GenericAnnotationWrapper
countAnnotationLinks, getDatasets, getDescription, getFolders, getImages, getLastModified, getNameSpace, getPlateAcquisitions, getPlates, getProjects, getScreens, getWells, setDescription, setNameSpace
-
Methods inherited from class fr.igred.omero.GenericObjectWrapper
asDataObject, canAnnotate, canChgrp, canChown, canDelete, canEdit, canLink, delete, distinct, flatten, getCreated, getGroupId, getId, getOwner, saveAndUpdate, toString, wrap, wrap
-
-
-
-
Constructor Detail
-
TextualAnnotationWrapper
public TextualAnnotationWrapper(TextualAnnotationData object)
Constructor of the TextualAnnotationWrapper class.- Parameters:
object
- TextualAnnotationData to be wrap.
-
TextualAnnotationWrapper
public TextualAnnotationWrapper(String text)
Creates a new Textual Annotation with the provided text.- Parameters:
text
- Textual Annotation to be contained.
-
-