Uses of Interface
fr.igred.omero.containers.Folder
-
Packages that use Folder Package Description fr.igred.omero.annotations This package contains interfaces and classes for handling annotations.fr.igred.omero.client This package contains the client interfaces used to interact with an OMERO server and a class implementing them.fr.igred.omero.containers This package contains interfaces and classes related to the hierarchical organization for images,fr.igred.omero.core This package contains interfaces and classes to handle images and their content, such as pixels, channels or planes. -
-
Uses of Folder in fr.igred.omero.annotations
Methods in fr.igred.omero.annotations that return types with arguments of type Folder Modifier and Type Method Description java.util.List<Folder>
Annotation. getFolders(Browser browser)
Gets all folders with this annotation from OMERO.java.util.List<Folder>
AnnotationWrapper. getFolders(Browser browser)
Gets all folders with this annotation from OMERO. -
Uses of Folder in fr.igred.omero.client
Methods in fr.igred.omero.client that return Folder Modifier and Type Method Description default Folder
Browser. getFolder(long id)
Gets the folder with the specified ID from OMERO, fully loaded.Methods in fr.igred.omero.client that return types with arguments of type Folder Modifier and Type Method Description default java.util.List<Folder>
Browser. getFolders()
Gets all folders available from OMERO.default java.util.List<Folder>
Browser. getFolders(Experimenter experimenter)
Gets all the folders owned by a given user from OMERO.default java.util.List<Folder>
Browser. loadFolders(java.lang.Long... ids)
Gets the folders with the specified IDs from OMERO (fully loaded). -
Uses of Folder in fr.igred.omero.containers
Classes in fr.igred.omero.containers that implement Folder Modifier and Type Class Description class
FolderWrapper
Class containing a FolderData object.Methods in fr.igred.omero.containers that return Folder Modifier and Type Method Description Folder
Folder. getParent()
Retrieves the parent folders for this folder.Folder
FolderWrapper. getParent()
Retrieves the parent folders for this folder.Methods in fr.igred.omero.containers that return types with arguments of type Folder Modifier and Type Method Description java.util.List<Folder>
Folder. getChildren()
Retrieves the children folders for this folder.java.util.List<Folder>
FolderWrapper. getChildren()
Retrieves the children folders for this folder.Methods in fr.igred.omero.containers with parameters of type Folder Modifier and Type Method Description void
Folder. addChild(Folder folder)
Adds a child folder to this folder.void
FolderWrapper. addChild(Folder folder)
Adds a child folder to this folder.void
Folder. setParent(Folder folder)
Sets the parent folder for this folder.void
FolderWrapper. setParent(Folder folder)
Sets the parent folder for this folder.Method parameters in fr.igred.omero.containers with type arguments of type Folder Modifier and Type Method Description void
Folder. addChildren(java.util.Collection<? extends Folder> folders)
Adds children folders to this folder.void
FolderWrapper. addChildren(java.util.Collection<? extends Folder> folders)
Adds children folders to this folder. -
Uses of Folder in fr.igred.omero.core
Methods in fr.igred.omero.core that return types with arguments of type Folder Modifier and Type Method Description default java.util.List<Folder>
Image. getFolders(Browser browser)
Gets the list of folders linked to this image.java.util.List<Folder>
Image. getROIFolders(DataManager dm)
Gets the list of folders linked to the ROIs in this image.java.util.List<Folder>
ImageWrapper. getROIFolders(DataManager dm)
Gets the list of folders linked to the ROIs in this image.
-