Uses of Class
fr.igred.omero.annotations.GenericAnnotationWrapper
-
Packages that use GenericAnnotationWrapper Package Description fr.igred.omero This package contains abstract wrapper classes for the OMERO Gateway and the basic OMERO object.fr.igred.omero.annotations This package contains wrapper classes for annotations.fr.igred.omero.util This package contains a utility class used to check if the library requirements are available. -
-
Uses of GenericAnnotationWrapper in fr.igred.omero
Methods in fr.igred.omero with type parameters of type GenericAnnotationWrapper Modifier and Type Method Description <A extends GenericAnnotationWrapper<?>>
booleanAnnotatableWrapper. isLinked(Client client, A annotation)
Checks if a specific annotation is linked to the object.<A extends GenericAnnotationWrapper<?>>
voidAnnotatableWrapper. link(Client client, A annotation)
Adds an annotation to the object in OMERO, if possible (and if it's not a TagSet).<A extends GenericAnnotationWrapper<?>>
voidAnnotatableWrapper. unlink(Client client, A annotation)
Unlinks the given annotation from the current object.<A extends GenericAnnotationWrapper<?>>
voidAnnotatableWrapper. unlink(Client client, Collection<A> annotations)
Unlinks the given annotations from the current object.Methods in fr.igred.omero with parameters of type GenericAnnotationWrapper Modifier and Type Method Description abstract List<ImageWrapper>
Browser. getImages(GenericAnnotationWrapper<?> annotation)
Gets all images with the specified annotation from OMERO.List<ImageWrapper>
Client. getImages(GenericAnnotationWrapper<?> annotation)
Gets all images with the specified annotation from OMERO.void
AnnotatableWrapper. link(Client client, GenericAnnotationWrapper<?>... annotations)
Adds multiple annotations to the object in OMERO, if possible.void
AnnotatableWrapper. linkIfNotLinked(Client client, GenericAnnotationWrapper<?>... annotations)
Adds multiple annotations to the object in OMERO if they are not already linked. -
Uses of GenericAnnotationWrapper in fr.igred.omero.annotations
Subclasses of GenericAnnotationWrapper in fr.igred.omero.annotations Modifier and Type Class Description class
FileAnnotationWrapper
Class containing a FileAnnotationData object.class
MapAnnotationWrapper
Class containing a MapAnnotationData, a MapAnnotationData contains a list of NamedValue(Key-Value pair).class
RatingAnnotationWrapper
Class containing a RatingAnnotationData object.class
TagAnnotationWrapper
Class containing a TagAnnotationData object.class
TagSetWrapper
Class containing a TagAnnotationData object with a namespace set toTagAnnotationWrapper.NS_TAGSET
.class
TextualAnnotationWrapper
Class containing a TextualAnnotationData object.Methods in fr.igred.omero.annotations with type parameters of type GenericAnnotationWrapper Modifier and Type Method Description <T extends GenericAnnotationWrapper<?>>
List<T>AnnotationList. getElementsOf(Class<? extends T> clazz)
Gets a list of elements from this list whose class is specified. -
Uses of GenericAnnotationWrapper in fr.igred.omero.util
Methods in fr.igred.omero.util with type parameters of type GenericAnnotationWrapper Modifier and Type Method Description static <T extends AnnotationData,U extends GenericAnnotationWrapper<? extends T>>
UWrapper. wrap(T object)
Converts (wraps) an AnnotationData object to an Annotation object.
-