public interface MetadataStore
The MetadataStore
interface encompasses the metadata that
any specific storage medium (file, relational database, etc.) should be
expected to store into its backing data model.
The MetadataStore
interface goes hand in hand with the
MetadataRetrieve
interface. Essentially,
MetadataRetrieve
provides the "getter" methods for a storage
medium, and MetadataStore
provides the "setter" methods.
Since it often makes sense for a storage medium to implement both
interfaces, there is also an IMetadata
interface encompassing
both MetadataStore
and MetadataRetrieve
, which
reduces the need to cast between object types.
See OMEXMLMetadata
for an example
implementation.
Important note: It is strongly recommended that applications
(e.g., file format readers) using MetadataStore
populate
information in a linear order. Specifically, iterating over entities
from "leftmost" index to "rightmost" index is required for certain
MetadataStore
implementations such as OMERO's
OMEROMetadataStore
. For example, when populating Image, Pixels
and Plane information, an outer loop should iterate across
imageIndex
, an inner loop should iterate across
pixelsIndex
, and an innermost loop should handle
planeIndex
. For an illustration of the ideal traversal order,
see MetadataConverter.convertMetadata(loci.formats.meta.MetadataRetrieve, loci.formats.meta.MetadataStore)
.
Modifier and Type | Method and Description |
---|---|
void |
createRoot() |
Object |
getRoot() |
void |
setArcID(String id,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcModel(String model,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcPower(Double power,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setArcType(ArcType type,
int instrumentIndex,
int lightSourceIndex) |
void |
setBinaryFileFileName(String fileName,
int fileAnnotationIndex) |
void |
setBinaryFileMIMEType(String mimeType,
int fileAnnotationIndex) |
void |
setBinaryFileSize(NonNegativeLong size,
int fileAnnotationIndex) |
void |
setBinaryOnlyMetadataFile(String metadataFile) |
void |
setBinaryOnlyUUID(String uuid) |
void |
setBooleanAnnotationAnnotationRef(String annotation,
int booleanAnnotationIndex,
int annotationRefIndex) |
void |
setBooleanAnnotationDescription(String description,
int booleanAnnotationIndex) |
void |
setBooleanAnnotationID(String id,
int booleanAnnotationIndex) |
void |
setBooleanAnnotationNamespace(String namespace,
int booleanAnnotationIndex) |
void |
setBooleanAnnotationValue(Boolean value,
int booleanAnnotationIndex) |
void |
setChannelAcquisitionMode(AcquisitionMode acquisitionMode,
int imageIndex,
int channelIndex) |
void |
setChannelAnnotationRef(String annotation,
int imageIndex,
int channelIndex,
int annotationRefIndex) |
void |
setChannelColor(Color color,
int imageIndex,
int channelIndex) |
void |
setChannelContrastMethod(ContrastMethod contrastMethod,
int imageIndex,
int channelIndex) |
void |
setChannelEmissionWavelength(PositiveInteger emissionWavelength,
int imageIndex,
int channelIndex) |
void |
setChannelExcitationWavelength(PositiveInteger excitationWavelength,
int imageIndex,
int channelIndex) |
void |
setChannelFilterSetRef(String filterSet,
int imageIndex,
int channelIndex) |
void |
setChannelFluor(String fluor,
int imageIndex,
int channelIndex) |
void |
setChannelID(String id,
int imageIndex,
int channelIndex) |
void |
setChannelIlluminationType(IlluminationType illuminationType,
int imageIndex,
int channelIndex) |
void |
setChannelLightSourceSettingsAttenuation(PercentFraction attenuation,
int imageIndex,
int channelIndex) |
void |
setChannelLightSourceSettingsID(String id,
int imageIndex,
int channelIndex) |
void |
setChannelLightSourceSettingsWavelength(PositiveInteger wavelength,
int imageIndex,
int channelIndex) |
void |
setChannelName(String name,
int imageIndex,
int channelIndex) |
void |
setChannelNDFilter(Double ndFilter,
int imageIndex,
int channelIndex) |
void |
setChannelPinholeSize(Double pinholeSize,
int imageIndex,
int channelIndex) |
void |
setChannelPockelCellSetting(Integer pockelCellSetting,
int imageIndex,
int channelIndex) |
void |
setChannelSamplesPerPixel(PositiveInteger samplesPerPixel,
int imageIndex,
int channelIndex) |
void |
setCommentAnnotationAnnotationRef(String annotation,
int commentAnnotationIndex,
int annotationRefIndex) |
void |
setCommentAnnotationDescription(String description,
int commentAnnotationIndex) |
void |
setCommentAnnotationID(String id,
int commentAnnotationIndex) |
void |
setCommentAnnotationNamespace(String namespace,
int commentAnnotationIndex) |
void |
setCommentAnnotationValue(String value,
int commentAnnotationIndex) |
void |
setDatasetAnnotationRef(String annotation,
int datasetIndex,
int annotationRefIndex) |
void |
setDatasetDescription(String description,
int datasetIndex) |
void |
setDatasetExperimenterGroupRef(String experimenterGroup,
int datasetIndex) |
void |
setDatasetExperimenterRef(String experimenter,
int datasetIndex) |
void |
setDatasetID(String id,
int datasetIndex) |
void |
setDatasetImageRef(String image,
int datasetIndex,
int imageRefIndex) |
void |
setDatasetName(String name,
int datasetIndex) |
void |
setDetectorAmplificationGain(Double amplificationGain,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorGain(Double gain,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorID(String id,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorLotNumber(String lotNumber,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorManufacturer(String manufacturer,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorModel(String model,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorOffset(Double offset,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorSerialNumber(String serialNumber,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorSettingsBinning(Binning binning,
int imageIndex,
int channelIndex) |
void |
setDetectorSettingsGain(Double gain,
int imageIndex,
int channelIndex) |
void |
setDetectorSettingsID(String id,
int imageIndex,
int channelIndex) |
void |
setDetectorSettingsOffset(Double offset,
int imageIndex,
int channelIndex) |
void |
setDetectorSettingsReadOutRate(Double readOutRate,
int imageIndex,
int channelIndex) |
void |
setDetectorSettingsVoltage(Double voltage,
int imageIndex,
int channelIndex) |
void |
setDetectorType(DetectorType type,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorVoltage(Double voltage,
int instrumentIndex,
int detectorIndex) |
void |
setDetectorZoom(Double zoom,
int instrumentIndex,
int detectorIndex) |
void |
setDichroicID(String id,
int instrumentIndex,
int dichroicIndex) |
void |
setDichroicLotNumber(String lotNumber,
int instrumentIndex,
int dichroicIndex) |
void |
setDichroicManufacturer(String manufacturer,
int instrumentIndex,
int dichroicIndex) |
void |
setDichroicModel(String model,
int instrumentIndex,
int dichroicIndex) |
void |
setDichroicSerialNumber(String serialNumber,
int instrumentIndex,
int dichroicIndex) |
void |
setDoubleAnnotationAnnotationRef(String annotation,
int doubleAnnotationIndex,
int annotationRefIndex) |
void |
setDoubleAnnotationDescription(String description,
int doubleAnnotationIndex) |
void |
setDoubleAnnotationID(String id,
int doubleAnnotationIndex) |
void |
setDoubleAnnotationNamespace(String namespace,
int doubleAnnotationIndex) |
void |
setDoubleAnnotationValue(Double value,
int doubleAnnotationIndex) |
void |
setEllipseFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setEllipseFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setEllipseFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setEllipseFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setEllipseFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setEllipseID(String id,
int ROIIndex,
int shapeIndex) |
void |
setEllipseLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setEllipseLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setEllipseRadiusX(Double radiusX,
int ROIIndex,
int shapeIndex) |
void |
setEllipseRadiusY(Double radiusY,
int ROIIndex,
int shapeIndex) |
void |
setEllipseStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setEllipseStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setEllipseStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setEllipseText(String text,
int ROIIndex,
int shapeIndex) |
void |
setEllipseTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setEllipseTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setEllipseTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setEllipseTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setEllipseVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setEllipseX(Double x,
int ROIIndex,
int shapeIndex) |
void |
setEllipseY(Double y,
int ROIIndex,
int shapeIndex) |
void |
setExperimentDescription(String description,
int experimentIndex) |
void |
setExperimenterAnnotationRef(String annotation,
int experimenterIndex,
int annotationRefIndex) |
void |
setExperimenterEmail(String email,
int experimenterIndex) |
void |
setExperimenterFirstName(String firstName,
int experimenterIndex) |
void |
setExperimenterGroupAnnotationRef(String annotation,
int experimenterGroupIndex,
int annotationRefIndex) |
void |
setExperimenterGroupDescription(String description,
int experimenterGroupIndex) |
void |
setExperimenterGroupExperimenterRef(String experimenter,
int experimenterGroupIndex,
int experimenterRefIndex) |
void |
setExperimenterGroupID(String id,
int experimenterGroupIndex) |
void |
setExperimenterGroupLeader(String leader,
int experimenterGroupIndex,
int leaderIndex) |
void |
setExperimenterGroupName(String name,
int experimenterGroupIndex) |
void |
setExperimenterID(String id,
int experimenterIndex) |
void |
setExperimenterInstitution(String institution,
int experimenterIndex) |
void |
setExperimenterLastName(String lastName,
int experimenterIndex) |
void |
setExperimenterMiddleName(String middleName,
int experimenterIndex) |
void |
setExperimenterUserName(String userName,
int experimenterIndex) |
void |
setExperimentExperimenterRef(String experimenter,
int experimentIndex) |
void |
setExperimentID(String id,
int experimentIndex) |
void |
setExperimentType(ExperimentType type,
int experimentIndex) |
void |
setFilamentID(String id,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentModel(String model,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentPower(Double power,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setFilamentType(FilamentType type,
int instrumentIndex,
int lightSourceIndex) |
void |
setFileAnnotationAnnotationRef(String annotation,
int fileAnnotationIndex,
int annotationRefIndex) |
void |
setFileAnnotationDescription(String description,
int fileAnnotationIndex) |
void |
setFileAnnotationID(String id,
int fileAnnotationIndex) |
void |
setFileAnnotationNamespace(String namespace,
int fileAnnotationIndex) |
void |
setFilterFilterWheel(String filterWheel,
int instrumentIndex,
int filterIndex) |
void |
setFilterID(String id,
int instrumentIndex,
int filterIndex) |
void |
setFilterLotNumber(String lotNumber,
int instrumentIndex,
int filterIndex) |
void |
setFilterManufacturer(String manufacturer,
int instrumentIndex,
int filterIndex) |
void |
setFilterModel(String model,
int instrumentIndex,
int filterIndex) |
void |
setFilterSerialNumber(String serialNumber,
int instrumentIndex,
int filterIndex) |
void |
setFilterSetDichroicRef(String dichroic,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterSetEmissionFilterRef(String emissionFilter,
int instrumentIndex,
int filterSetIndex,
int emissionFilterRefIndex) |
void |
setFilterSetExcitationFilterRef(String excitationFilter,
int instrumentIndex,
int filterSetIndex,
int excitationFilterRefIndex) |
void |
setFilterSetID(String id,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterSetLotNumber(String lotNumber,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterSetManufacturer(String manufacturer,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterSetModel(String model,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterSetSerialNumber(String serialNumber,
int instrumentIndex,
int filterSetIndex) |
void |
setFilterType(FilterType type,
int instrumentIndex,
int filterIndex) |
void |
setImageAcquisitionDate(Timestamp acquisitionDate,
int imageIndex) |
void |
setImageAnnotationRef(String annotation,
int imageIndex,
int annotationRefIndex) |
void |
setImageDescription(String description,
int imageIndex) |
void |
setImageExperimenterGroupRef(String experimenterGroup,
int imageIndex) |
void |
setImageExperimenterRef(String experimenter,
int imageIndex) |
void |
setImageExperimentRef(String experiment,
int imageIndex) |
void |
setImageID(String id,
int imageIndex) |
void |
setImageInstrumentRef(String instrument,
int imageIndex) |
void |
setImageMicrobeamManipulationRef(String microbeamManipulation,
int imageIndex,
int microbeamManipulationRefIndex) |
void |
setImageName(String name,
int imageIndex) |
void |
setImageROIRef(String roi,
int imageIndex,
int ROIRefIndex) |
void |
setImagingEnvironmentAirPressure(Double airPressure,
int imageIndex) |
void |
setImagingEnvironmentCO2Percent(PercentFraction co2Percent,
int imageIndex) |
void |
setImagingEnvironmentHumidity(PercentFraction humidity,
int imageIndex) |
void |
setImagingEnvironmentTemperature(Double temperature,
int imageIndex) |
void |
setInstrumentID(String id,
int instrumentIndex) |
void |
setLabelFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setLabelFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setLabelFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setLabelFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setLabelFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setLabelID(String id,
int ROIIndex,
int shapeIndex) |
void |
setLabelLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setLabelLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setLabelStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setLabelStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setLabelStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setLabelText(String text,
int ROIIndex,
int shapeIndex) |
void |
setLabelTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setLabelTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setLabelTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setLabelTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setLabelVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setLabelX(Double x,
int ROIIndex,
int shapeIndex) |
void |
setLabelY(Double y,
int ROIIndex,
int shapeIndex) |
void |
setLaserFrequencyMultiplication(PositiveInteger frequencyMultiplication,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserID(String id,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserLaserMedium(LaserMedium laserMedium,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserModel(String model,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserPockelCell(Boolean pockelCell,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserPower(Double power,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserPulse(Pulse pulse,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserPump(String pump,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserRepetitionRate(Double repetitionRate,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserTuneable(Boolean tuneable,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserType(LaserType type,
int instrumentIndex,
int lightSourceIndex) |
void |
setLaserWavelength(PositiveInteger wavelength,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodeID(String id,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodeLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodeManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodeModel(String model,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodePower(Double power,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightEmittingDiodeSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex) |
void |
setLightPathDichroicRef(String dichroic,
int imageIndex,
int channelIndex) |
void |
setLightPathEmissionFilterRef(String emissionFilter,
int imageIndex,
int channelIndex,
int emissionFilterRefIndex) |
void |
setLightPathExcitationFilterRef(String excitationFilter,
int imageIndex,
int channelIndex,
int excitationFilterRefIndex) |
void |
setLineFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setLineFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setLineFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setLineFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setLineFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setLineID(String id,
int ROIIndex,
int shapeIndex) |
void |
setLineLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setLineLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setLineMarkerEnd(Marker markerEnd,
int ROIIndex,
int shapeIndex) |
void |
setLineMarkerStart(Marker markerStart,
int ROIIndex,
int shapeIndex) |
void |
setLineStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setLineStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setLineStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setLineText(String text,
int ROIIndex,
int shapeIndex) |
void |
setLineTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setLineTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setLineTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setLineTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setLineVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setLineX1(Double x1,
int ROIIndex,
int shapeIndex) |
void |
setLineX2(Double x2,
int ROIIndex,
int shapeIndex) |
void |
setLineY1(Double y1,
int ROIIndex,
int shapeIndex) |
void |
setLineY2(Double y2,
int ROIIndex,
int shapeIndex) |
void |
setListAnnotationAnnotationRef(String annotation,
int listAnnotationIndex,
int annotationRefIndex) |
void |
setListAnnotationDescription(String description,
int listAnnotationIndex) |
void |
setListAnnotationID(String id,
int listAnnotationIndex) |
void |
setListAnnotationNamespace(String namespace,
int listAnnotationIndex) |
void |
setLongAnnotationAnnotationRef(String annotation,
int longAnnotationIndex,
int annotationRefIndex) |
void |
setLongAnnotationDescription(String description,
int longAnnotationIndex) |
void |
setLongAnnotationID(String id,
int longAnnotationIndex) |
void |
setLongAnnotationNamespace(String namespace,
int longAnnotationIndex) |
void |
setLongAnnotationValue(Long value,
int longAnnotationIndex) |
void |
setMaskBinData(byte[] binData,
int ROIIndex,
int shapeIndex) |
void |
setMaskFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setMaskFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setMaskFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setMaskFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setMaskFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setMaskHeight(Double height,
int ROIIndex,
int shapeIndex) |
void |
setMaskID(String id,
int ROIIndex,
int shapeIndex) |
void |
setMaskLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setMaskLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setMaskStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setMaskStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setMaskStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setMaskText(String text,
int ROIIndex,
int shapeIndex) |
void |
setMaskTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setMaskTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setMaskTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setMaskTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setMaskVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setMaskWidth(Double width,
int ROIIndex,
int shapeIndex) |
void |
setMaskX(Double x,
int ROIIndex,
int shapeIndex) |
void |
setMaskY(Double y,
int ROIIndex,
int shapeIndex) |
void |
setMicrobeamManipulationDescription(String description,
int experimentIndex,
int microbeamManipulationIndex) |
void |
setMicrobeamManipulationExperimenterRef(String experimenter,
int experimentIndex,
int microbeamManipulationIndex) |
void |
setMicrobeamManipulationID(String id,
int experimentIndex,
int microbeamManipulationIndex) |
void |
setMicrobeamManipulationLightSourceSettingsAttenuation(PercentFraction attenuation,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex) |
void |
setMicrobeamManipulationLightSourceSettingsID(String id,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex) |
void |
setMicrobeamManipulationLightSourceSettingsWavelength(PositiveInteger wavelength,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex) |
void |
setMicrobeamManipulationROIRef(String roi,
int experimentIndex,
int microbeamManipulationIndex,
int ROIRefIndex) |
void |
setMicrobeamManipulationType(MicrobeamManipulationType type,
int experimentIndex,
int microbeamManipulationIndex) |
void |
setMicroscopeLotNumber(String lotNumber,
int instrumentIndex) |
void |
setMicroscopeManufacturer(String manufacturer,
int instrumentIndex) |
void |
setMicroscopeModel(String model,
int instrumentIndex) |
void |
setMicroscopeSerialNumber(String serialNumber,
int instrumentIndex) |
void |
setMicroscopeType(MicroscopeType type,
int instrumentIndex) |
void |
setObjectiveCalibratedMagnification(Double calibratedMagnification,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveCorrection(Correction correction,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveID(String id,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveImmersion(Immersion immersion,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveIris(Boolean iris,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveLensNA(Double lensNA,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveLotNumber(String lotNumber,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveManufacturer(String manufacturer,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveModel(String model,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveNominalMagnification(PositiveInteger nominalMagnification,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveSerialNumber(String serialNumber,
int instrumentIndex,
int objectiveIndex) |
void |
setObjectiveSettingsCorrectionCollar(Double correctionCollar,
int imageIndex) |
void |
setObjectiveSettingsID(String id,
int imageIndex) |
void |
setObjectiveSettingsMedium(Medium medium,
int imageIndex) |
void |
setObjectiveSettingsRefractiveIndex(Double refractiveIndex,
int imageIndex) |
void |
setObjectiveWorkingDistance(Double workingDistance,
int instrumentIndex,
int objectiveIndex) |
void |
setPixelsAnnotationRef(String annotation,
int imageIndex,
int annotationRefIndex) |
void |
setPixelsBinDataBigEndian(Boolean bigEndian,
int imageIndex,
int binDataIndex) |
void |
setPixelsDimensionOrder(DimensionOrder dimensionOrder,
int imageIndex) |
void |
setPixelsID(String id,
int imageIndex) |
void |
setPixelsPhysicalSizeX(PositiveFloat physicalSizeX,
int imageIndex) |
void |
setPixelsPhysicalSizeY(PositiveFloat physicalSizeY,
int imageIndex) |
void |
setPixelsPhysicalSizeZ(PositiveFloat physicalSizeZ,
int imageIndex) |
void |
setPixelsSizeC(PositiveInteger sizeC,
int imageIndex) |
void |
setPixelsSizeT(PositiveInteger sizeT,
int imageIndex) |
void |
setPixelsSizeX(PositiveInteger sizeX,
int imageIndex) |
void |
setPixelsSizeY(PositiveInteger sizeY,
int imageIndex) |
void |
setPixelsSizeZ(PositiveInteger sizeZ,
int imageIndex) |
void |
setPixelsTimeIncrement(Double timeIncrement,
int imageIndex) |
void |
setPixelsType(PixelType type,
int imageIndex) |
void |
setPlaneAnnotationRef(String annotation,
int imageIndex,
int planeIndex,
int annotationRefIndex) |
void |
setPlaneDeltaT(Double deltaT,
int imageIndex,
int planeIndex) |
void |
setPlaneExposureTime(Double exposureTime,
int imageIndex,
int planeIndex) |
void |
setPlaneHashSHA1(String hashSHA1,
int imageIndex,
int planeIndex) |
void |
setPlanePositionX(Double positionX,
int imageIndex,
int planeIndex) |
void |
setPlanePositionY(Double positionY,
int imageIndex,
int planeIndex) |
void |
setPlanePositionZ(Double positionZ,
int imageIndex,
int planeIndex) |
void |
setPlaneTheC(NonNegativeInteger theC,
int imageIndex,
int planeIndex) |
void |
setPlaneTheT(NonNegativeInteger theT,
int imageIndex,
int planeIndex) |
void |
setPlaneTheZ(NonNegativeInteger theZ,
int imageIndex,
int planeIndex) |
void |
setPlateAcquisitionAnnotationRef(String annotation,
int plateIndex,
int plateAcquisitionIndex,
int annotationRefIndex) |
void |
setPlateAcquisitionDescription(String description,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionEndTime(Timestamp endTime,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionID(String id,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionMaximumFieldCount(PositiveInteger maximumFieldCount,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionName(String name,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionStartTime(Timestamp startTime,
int plateIndex,
int plateAcquisitionIndex) |
void |
setPlateAcquisitionWellSampleRef(String wellSample,
int plateIndex,
int plateAcquisitionIndex,
int wellSampleRefIndex) |
void |
setPlateAnnotationRef(String annotation,
int plateIndex,
int annotationRefIndex) |
void |
setPlateColumnNamingConvention(NamingConvention columnNamingConvention,
int plateIndex) |
void |
setPlateColumns(PositiveInteger columns,
int plateIndex) |
void |
setPlateDescription(String description,
int plateIndex) |
void |
setPlateExternalIdentifier(String externalIdentifier,
int plateIndex) |
void |
setPlateFieldIndex(NonNegativeInteger fieldIndex,
int plateIndex) |
void |
setPlateID(String id,
int plateIndex) |
void |
setPlateName(String name,
int plateIndex) |
void |
setPlateRowNamingConvention(NamingConvention rowNamingConvention,
int plateIndex) |
void |
setPlateRows(PositiveInteger rows,
int plateIndex) |
void |
setPlateStatus(String status,
int plateIndex) |
void |
setPlateWellOriginX(Double wellOriginX,
int plateIndex) |
void |
setPlateWellOriginY(Double wellOriginY,
int plateIndex) |
void |
setPointFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setPointFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setPointFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setPointFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setPointFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setPointID(String id,
int ROIIndex,
int shapeIndex) |
void |
setPointLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setPointLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setPointStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setPointStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setPointStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setPointText(String text,
int ROIIndex,
int shapeIndex) |
void |
setPointTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setPointTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setPointTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setPointTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setPointVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setPointX(Double x,
int ROIIndex,
int shapeIndex) |
void |
setPointY(Double y,
int ROIIndex,
int shapeIndex) |
void |
setPolygonFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setPolygonFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setPolygonFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setPolygonFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setPolygonFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setPolygonID(String id,
int ROIIndex,
int shapeIndex) |
void |
setPolygonLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setPolygonLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setPolygonPoints(String points,
int ROIIndex,
int shapeIndex) |
void |
setPolygonStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setPolygonStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setPolygonStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setPolygonText(String text,
int ROIIndex,
int shapeIndex) |
void |
setPolygonTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setPolygonTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setPolygonTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setPolygonTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setPolygonVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setPolylineFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setPolylineFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setPolylineFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setPolylineFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setPolylineFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setPolylineID(String id,
int ROIIndex,
int shapeIndex) |
void |
setPolylineLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setPolylineLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setPolylineMarkerEnd(Marker markerEnd,
int ROIIndex,
int shapeIndex) |
void |
setPolylineMarkerStart(Marker markerStart,
int ROIIndex,
int shapeIndex) |
void |
setPolylinePoints(String points,
int ROIIndex,
int shapeIndex) |
void |
setPolylineStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setPolylineStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setPolylineStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setPolylineText(String text,
int ROIIndex,
int shapeIndex) |
void |
setPolylineTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setPolylineTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setPolylineTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setPolylineTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setPolylineVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setProjectAnnotationRef(String annotation,
int projectIndex,
int annotationRefIndex) |
void |
setProjectDatasetRef(String dataset,
int projectIndex,
int datasetRefIndex) |
void |
setProjectDescription(String description,
int projectIndex) |
void |
setProjectExperimenterGroupRef(String experimenterGroup,
int projectIndex) |
void |
setProjectExperimenterRef(String experimenter,
int projectIndex) |
void |
setProjectID(String id,
int projectIndex) |
void |
setProjectName(String name,
int projectIndex) |
void |
setReagentAnnotationRef(String annotation,
int screenIndex,
int reagentIndex,
int annotationRefIndex) |
void |
setReagentDescription(String description,
int screenIndex,
int reagentIndex) |
void |
setReagentID(String id,
int screenIndex,
int reagentIndex) |
void |
setReagentName(String name,
int screenIndex,
int reagentIndex) |
void |
setReagentReagentIdentifier(String reagentIdentifier,
int screenIndex,
int reagentIndex) |
void |
setRectangleFillColor(Color fillColor,
int ROIIndex,
int shapeIndex) |
void |
setRectangleFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex) |
void |
setRectangleFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex) |
void |
setRectangleFontSize(NonNegativeInteger fontSize,
int ROIIndex,
int shapeIndex) |
void |
setRectangleFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex) |
void |
setRectangleHeight(Double height,
int ROIIndex,
int shapeIndex) |
void |
setRectangleID(String id,
int ROIIndex,
int shapeIndex) |
void |
setRectangleLineCap(LineCap lineCap,
int ROIIndex,
int shapeIndex) |
void |
setRectangleLocked(Boolean locked,
int ROIIndex,
int shapeIndex) |
void |
setRectangleStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex) |
void |
setRectangleStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex) |
void |
setRectangleStrokeWidth(Double strokeWidth,
int ROIIndex,
int shapeIndex) |
void |
setRectangleText(String text,
int ROIIndex,
int shapeIndex) |
void |
setRectangleTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex) |
void |
setRectangleTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex) |
void |
setRectangleTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex) |
void |
setRectangleTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex) |
void |
setRectangleVisible(Boolean visible,
int ROIIndex,
int shapeIndex) |
void |
setRectangleWidth(Double width,
int ROIIndex,
int shapeIndex) |
void |
setRectangleX(Double x,
int ROIIndex,
int shapeIndex) |
void |
setRectangleY(Double y,
int ROIIndex,
int shapeIndex) |
void |
setROIAnnotationRef(String annotation,
int ROIIndex,
int annotationRefIndex) |
void |
setROIDescription(String description,
int ROIIndex) |
void |
setROIID(String id,
int ROIIndex) |
void |
setROIName(String name,
int ROIIndex) |
void |
setROINamespace(String namespace,
int ROIIndex) |
void |
setRoot(Object root) |
void |
setScreenAnnotationRef(String annotation,
int screenIndex,
int annotationRefIndex) |
void |
setScreenDescription(String description,
int screenIndex) |
void |
setScreenID(String id,
int screenIndex) |
void |
setScreenName(String name,
int screenIndex) |
void |
setScreenPlateRef(String plate,
int screenIndex,
int plateRefIndex) |
void |
setScreenProtocolDescription(String protocolDescription,
int screenIndex) |
void |
setScreenProtocolIdentifier(String protocolIdentifier,
int screenIndex) |
void |
setScreenReagentSetDescription(String reagentSetDescription,
int screenIndex) |
void |
setScreenReagentSetIdentifier(String reagentSetIdentifier,
int screenIndex) |
void |
setScreenType(String type,
int screenIndex) |
void |
setStageLabelName(String name,
int imageIndex) |
void |
setStageLabelX(Double x,
int imageIndex) |
void |
setStageLabelY(Double y,
int imageIndex) |
void |
setStageLabelZ(Double z,
int imageIndex) |
void |
setTagAnnotationAnnotationRef(String annotation,
int tagAnnotationIndex,
int annotationRefIndex) |
void |
setTagAnnotationDescription(String description,
int tagAnnotationIndex) |
void |
setTagAnnotationID(String id,
int tagAnnotationIndex) |
void |
setTagAnnotationNamespace(String namespace,
int tagAnnotationIndex) |
void |
setTagAnnotationValue(String value,
int tagAnnotationIndex) |
void |
setTermAnnotationAnnotationRef(String annotation,
int termAnnotationIndex,
int annotationRefIndex) |
void |
setTermAnnotationDescription(String description,
int termAnnotationIndex) |
void |
setTermAnnotationID(String id,
int termAnnotationIndex) |
void |
setTermAnnotationNamespace(String namespace,
int termAnnotationIndex) |
void |
setTermAnnotationValue(String value,
int termAnnotationIndex) |
void |
setTiffDataFirstC(NonNegativeInteger firstC,
int imageIndex,
int tiffDataIndex) |
void |
setTiffDataFirstT(NonNegativeInteger firstT,
int imageIndex,
int tiffDataIndex) |
void |
setTiffDataFirstZ(NonNegativeInteger firstZ,
int imageIndex,
int tiffDataIndex) |
void |
setTiffDataIFD(NonNegativeInteger ifd,
int imageIndex,
int tiffDataIndex) |
void |
setTiffDataPlaneCount(NonNegativeInteger planeCount,
int imageIndex,
int tiffDataIndex) |
void |
setTimestampAnnotationAnnotationRef(String annotation,
int timestampAnnotationIndex,
int annotationRefIndex) |
void |
setTimestampAnnotationDescription(String description,
int timestampAnnotationIndex) |
void |
setTimestampAnnotationID(String id,
int timestampAnnotationIndex) |
void |
setTimestampAnnotationNamespace(String namespace,
int timestampAnnotationIndex) |
void |
setTimestampAnnotationValue(Timestamp value,
int timestampAnnotationIndex) |
void |
setTransmittanceRangeCutIn(PositiveInteger cutIn,
int instrumentIndex,
int filterIndex) |
void |
setTransmittanceRangeCutInTolerance(NonNegativeInteger cutInTolerance,
int instrumentIndex,
int filterIndex) |
void |
setTransmittanceRangeCutOut(PositiveInteger cutOut,
int instrumentIndex,
int filterIndex) |
void |
setTransmittanceRangeCutOutTolerance(NonNegativeInteger cutOutTolerance,
int instrumentIndex,
int filterIndex) |
void |
setTransmittanceRangeTransmittance(PercentFraction transmittance,
int instrumentIndex,
int filterIndex) |
void |
setUUID(String uuid)
Sets the UUID associated with this collection of metadata.
|
void |
setUUIDFileName(String fileName,
int imageIndex,
int tiffDataIndex) |
void |
setUUIDValue(String value,
int imageIndex,
int tiffDataIndex) |
void |
setWellAnnotationRef(String annotation,
int plateIndex,
int wellIndex,
int annotationRefIndex) |
void |
setWellColor(Color color,
int plateIndex,
int wellIndex) |
void |
setWellColumn(NonNegativeInteger column,
int plateIndex,
int wellIndex) |
void |
setWellExternalDescription(String externalDescription,
int plateIndex,
int wellIndex) |
void |
setWellExternalIdentifier(String externalIdentifier,
int plateIndex,
int wellIndex) |
void |
setWellID(String id,
int plateIndex,
int wellIndex) |
void |
setWellReagentRef(String reagent,
int plateIndex,
int wellIndex) |
void |
setWellRow(NonNegativeInteger row,
int plateIndex,
int wellIndex) |
void |
setWellSampleAnnotationRef(String annotation,
int plateIndex,
int wellIndex,
int wellSampleIndex,
int annotationRefIndex) |
void |
setWellSampleID(String id,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellSampleImageRef(String image,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellSampleIndex(NonNegativeInteger index,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellSamplePositionX(Double positionX,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellSamplePositionY(Double positionY,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellSampleTimepoint(Timestamp timepoint,
int plateIndex,
int wellIndex,
int wellSampleIndex) |
void |
setWellType(String type,
int plateIndex,
int wellIndex) |
void |
setXMLAnnotationAnnotationRef(String annotation,
int XMLAnnotationIndex,
int annotationRefIndex) |
void |
setXMLAnnotationDescription(String description,
int XMLAnnotationIndex) |
void |
setXMLAnnotationID(String id,
int XMLAnnotationIndex) |
void |
setXMLAnnotationNamespace(String namespace,
int XMLAnnotationIndex) |
void |
setXMLAnnotationValue(String value,
int XMLAnnotationIndex) |
void createRoot()
Object getRoot()
void setRoot(Object root)
void setPixelsBinDataBigEndian(Boolean bigEndian, int imageIndex, int binDataIndex)
void setMaskBinData(byte[] binData, int ROIIndex, int shapeIndex)
void setUUID(String uuid)
void setArcID(String id, int instrumentIndex, int lightSourceIndex)
void setArcLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
void setArcManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
void setArcModel(String model, int instrumentIndex, int lightSourceIndex)
void setArcPower(Double power, int instrumentIndex, int lightSourceIndex)
void setArcSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
void setArcType(ArcType type, int instrumentIndex, int lightSourceIndex)
void setBinaryFileFileName(String fileName, int fileAnnotationIndex)
void setBinaryFileMIMEType(String mimeType, int fileAnnotationIndex)
void setBinaryFileSize(NonNegativeLong size, int fileAnnotationIndex)
void setBinaryOnlyMetadataFile(String metadataFile)
void setBinaryOnlyUUID(String uuid)
void setBooleanAnnotationAnnotationRef(String annotation, int booleanAnnotationIndex, int annotationRefIndex)
void setBooleanAnnotationDescription(String description, int booleanAnnotationIndex)
void setBooleanAnnotationID(String id, int booleanAnnotationIndex)
void setBooleanAnnotationNamespace(String namespace, int booleanAnnotationIndex)
void setBooleanAnnotationValue(Boolean value, int booleanAnnotationIndex)
void setChannelAcquisitionMode(AcquisitionMode acquisitionMode, int imageIndex, int channelIndex)
void setChannelAnnotationRef(String annotation, int imageIndex, int channelIndex, int annotationRefIndex)
void setChannelColor(Color color, int imageIndex, int channelIndex)
void setChannelContrastMethod(ContrastMethod contrastMethod, int imageIndex, int channelIndex)
void setChannelEmissionWavelength(PositiveInteger emissionWavelength, int imageIndex, int channelIndex)
void setChannelExcitationWavelength(PositiveInteger excitationWavelength, int imageIndex, int channelIndex)
void setChannelFilterSetRef(String filterSet, int imageIndex, int channelIndex)
void setChannelFluor(String fluor, int imageIndex, int channelIndex)
void setChannelID(String id, int imageIndex, int channelIndex)
void setChannelIlluminationType(IlluminationType illuminationType, int imageIndex, int channelIndex)
void setChannelNDFilter(Double ndFilter, int imageIndex, int channelIndex)
void setChannelName(String name, int imageIndex, int channelIndex)
void setChannelPinholeSize(Double pinholeSize, int imageIndex, int channelIndex)
void setChannelPockelCellSetting(Integer pockelCellSetting, int imageIndex, int channelIndex)
void setChannelSamplesPerPixel(PositiveInteger samplesPerPixel, int imageIndex, int channelIndex)
void setCommentAnnotationAnnotationRef(String annotation, int commentAnnotationIndex, int annotationRefIndex)
void setCommentAnnotationDescription(String description, int commentAnnotationIndex)
void setCommentAnnotationID(String id, int commentAnnotationIndex)
void setCommentAnnotationNamespace(String namespace, int commentAnnotationIndex)
void setCommentAnnotationValue(String value, int commentAnnotationIndex)
void setDatasetAnnotationRef(String annotation, int datasetIndex, int annotationRefIndex)
void setDatasetDescription(String description, int datasetIndex)
void setDatasetExperimenterGroupRef(String experimenterGroup, int datasetIndex)
void setDatasetExperimenterRef(String experimenter, int datasetIndex)
void setDatasetID(String id, int datasetIndex)
void setDatasetImageRef(String image, int datasetIndex, int imageRefIndex)
void setDatasetName(String name, int datasetIndex)
void setDetectorAmplificationGain(Double amplificationGain, int instrumentIndex, int detectorIndex)
void setDetectorGain(Double gain, int instrumentIndex, int detectorIndex)
void setDetectorID(String id, int instrumentIndex, int detectorIndex)
void setDetectorLotNumber(String lotNumber, int instrumentIndex, int detectorIndex)
void setDetectorManufacturer(String manufacturer, int instrumentIndex, int detectorIndex)
void setDetectorModel(String model, int instrumentIndex, int detectorIndex)
void setDetectorOffset(Double offset, int instrumentIndex, int detectorIndex)
void setDetectorSerialNumber(String serialNumber, int instrumentIndex, int detectorIndex)
void setDetectorType(DetectorType type, int instrumentIndex, int detectorIndex)
void setDetectorVoltage(Double voltage, int instrumentIndex, int detectorIndex)
void setDetectorZoom(Double zoom, int instrumentIndex, int detectorIndex)
void setDetectorSettingsBinning(Binning binning, int imageIndex, int channelIndex)
void setDetectorSettingsGain(Double gain, int imageIndex, int channelIndex)
void setDetectorSettingsID(String id, int imageIndex, int channelIndex)
void setDetectorSettingsOffset(Double offset, int imageIndex, int channelIndex)
void setDetectorSettingsReadOutRate(Double readOutRate, int imageIndex, int channelIndex)
void setDetectorSettingsVoltage(Double voltage, int imageIndex, int channelIndex)
void setDichroicID(String id, int instrumentIndex, int dichroicIndex)
void setDichroicLotNumber(String lotNumber, int instrumentIndex, int dichroicIndex)
void setDichroicManufacturer(String manufacturer, int instrumentIndex, int dichroicIndex)
void setDichroicModel(String model, int instrumentIndex, int dichroicIndex)
void setDichroicSerialNumber(String serialNumber, int instrumentIndex, int dichroicIndex)
void setDoubleAnnotationAnnotationRef(String annotation, int doubleAnnotationIndex, int annotationRefIndex)
void setDoubleAnnotationDescription(String description, int doubleAnnotationIndex)
void setDoubleAnnotationID(String id, int doubleAnnotationIndex)
void setDoubleAnnotationNamespace(String namespace, int doubleAnnotationIndex)
void setDoubleAnnotationValue(Double value, int doubleAnnotationIndex)
void setEllipseFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setEllipseFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setEllipseFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setEllipseFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setEllipseFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setEllipseID(String id, int ROIIndex, int shapeIndex)
void setEllipseLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setEllipseLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setEllipseStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setEllipseStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setEllipseStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setEllipseText(String text, int ROIIndex, int shapeIndex)
void setEllipseTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setEllipseTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setEllipseTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setEllipseTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setEllipseVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setEllipseRadiusX(Double radiusX, int ROIIndex, int shapeIndex)
void setEllipseRadiusY(Double radiusY, int ROIIndex, int shapeIndex)
void setEllipseX(Double x, int ROIIndex, int shapeIndex)
void setEllipseY(Double y, int ROIIndex, int shapeIndex)
void setExperimentDescription(String description, int experimentIndex)
void setExperimentExperimenterRef(String experimenter, int experimentIndex)
void setExperimentID(String id, int experimentIndex)
void setExperimentType(ExperimentType type, int experimentIndex)
void setExperimenterAnnotationRef(String annotation, int experimenterIndex, int annotationRefIndex)
void setExperimenterEmail(String email, int experimenterIndex)
void setExperimenterFirstName(String firstName, int experimenterIndex)
void setExperimenterID(String id, int experimenterIndex)
void setExperimenterInstitution(String institution, int experimenterIndex)
void setExperimenterLastName(String lastName, int experimenterIndex)
void setExperimenterMiddleName(String middleName, int experimenterIndex)
void setExperimenterUserName(String userName, int experimenterIndex)
void setExperimenterGroupAnnotationRef(String annotation, int experimenterGroupIndex, int annotationRefIndex)
void setExperimenterGroupDescription(String description, int experimenterGroupIndex)
void setExperimenterGroupExperimenterRef(String experimenter, int experimenterGroupIndex, int experimenterRefIndex)
void setExperimenterGroupID(String id, int experimenterGroupIndex)
void setExperimenterGroupLeader(String leader, int experimenterGroupIndex, int leaderIndex)
void setExperimenterGroupName(String name, int experimenterGroupIndex)
void setFilamentID(String id, int instrumentIndex, int lightSourceIndex)
void setFilamentLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
void setFilamentManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
void setFilamentModel(String model, int instrumentIndex, int lightSourceIndex)
void setFilamentPower(Double power, int instrumentIndex, int lightSourceIndex)
void setFilamentSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
void setFilamentType(FilamentType type, int instrumentIndex, int lightSourceIndex)
void setFileAnnotationAnnotationRef(String annotation, int fileAnnotationIndex, int annotationRefIndex)
void setFileAnnotationDescription(String description, int fileAnnotationIndex)
void setFileAnnotationID(String id, int fileAnnotationIndex)
void setFileAnnotationNamespace(String namespace, int fileAnnotationIndex)
void setFilterFilterWheel(String filterWheel, int instrumentIndex, int filterIndex)
void setFilterID(String id, int instrumentIndex, int filterIndex)
void setFilterLotNumber(String lotNumber, int instrumentIndex, int filterIndex)
void setFilterManufacturer(String manufacturer, int instrumentIndex, int filterIndex)
void setFilterModel(String model, int instrumentIndex, int filterIndex)
void setFilterSerialNumber(String serialNumber, int instrumentIndex, int filterIndex)
void setFilterType(FilterType type, int instrumentIndex, int filterIndex)
void setFilterSetDichroicRef(String dichroic, int instrumentIndex, int filterSetIndex)
void setFilterSetEmissionFilterRef(String emissionFilter, int instrumentIndex, int filterSetIndex, int emissionFilterRefIndex)
void setFilterSetExcitationFilterRef(String excitationFilter, int instrumentIndex, int filterSetIndex, int excitationFilterRefIndex)
void setFilterSetID(String id, int instrumentIndex, int filterSetIndex)
void setFilterSetLotNumber(String lotNumber, int instrumentIndex, int filterSetIndex)
void setFilterSetManufacturer(String manufacturer, int instrumentIndex, int filterSetIndex)
void setFilterSetModel(String model, int instrumentIndex, int filterSetIndex)
void setFilterSetSerialNumber(String serialNumber, int instrumentIndex, int filterSetIndex)
void setImageAcquisitionDate(Timestamp acquisitionDate, int imageIndex)
void setImageAnnotationRef(String annotation, int imageIndex, int annotationRefIndex)
void setImageDescription(String description, int imageIndex)
void setImageExperimentRef(String experiment, int imageIndex)
void setImageExperimenterGroupRef(String experimenterGroup, int imageIndex)
void setImageExperimenterRef(String experimenter, int imageIndex)
void setImageID(String id, int imageIndex)
void setImageInstrumentRef(String instrument, int imageIndex)
void setImageMicrobeamManipulationRef(String microbeamManipulation, int imageIndex, int microbeamManipulationRefIndex)
void setImageName(String name, int imageIndex)
void setImageROIRef(String roi, int imageIndex, int ROIRefIndex)
void setImagingEnvironmentAirPressure(Double airPressure, int imageIndex)
void setImagingEnvironmentCO2Percent(PercentFraction co2Percent, int imageIndex)
void setImagingEnvironmentHumidity(PercentFraction humidity, int imageIndex)
void setImagingEnvironmentTemperature(Double temperature, int imageIndex)
void setInstrumentID(String id, int instrumentIndex)
void setLabelFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setLabelFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setLabelFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setLabelFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setLabelFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setLabelID(String id, int ROIIndex, int shapeIndex)
void setLabelLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setLabelLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setLabelStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setLabelStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setLabelStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setLabelText(String text, int ROIIndex, int shapeIndex)
void setLabelTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setLabelTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setLabelTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setLabelTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setLabelVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setLabelX(Double x, int ROIIndex, int shapeIndex)
void setLabelY(Double y, int ROIIndex, int shapeIndex)
void setLaserID(String id, int instrumentIndex, int lightSourceIndex)
void setLaserLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
void setLaserManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
void setLaserModel(String model, int instrumentIndex, int lightSourceIndex)
void setLaserPower(Double power, int instrumentIndex, int lightSourceIndex)
void setLaserSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
void setLaserFrequencyMultiplication(PositiveInteger frequencyMultiplication, int instrumentIndex, int lightSourceIndex)
void setLaserLaserMedium(LaserMedium laserMedium, int instrumentIndex, int lightSourceIndex)
void setLaserPockelCell(Boolean pockelCell, int instrumentIndex, int lightSourceIndex)
void setLaserPulse(Pulse pulse, int instrumentIndex, int lightSourceIndex)
void setLaserPump(String pump, int instrumentIndex, int lightSourceIndex)
void setLaserRepetitionRate(Double repetitionRate, int instrumentIndex, int lightSourceIndex)
void setLaserTuneable(Boolean tuneable, int instrumentIndex, int lightSourceIndex)
void setLaserType(LaserType type, int instrumentIndex, int lightSourceIndex)
void setLaserWavelength(PositiveInteger wavelength, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodeID(String id, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodeLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodeManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodeModel(String model, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodePower(Double power, int instrumentIndex, int lightSourceIndex)
void setLightEmittingDiodeSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
void setLightPathDichroicRef(String dichroic, int imageIndex, int channelIndex)
void setLightPathEmissionFilterRef(String emissionFilter, int imageIndex, int channelIndex, int emissionFilterRefIndex)
void setLightPathExcitationFilterRef(String excitationFilter, int imageIndex, int channelIndex, int excitationFilterRefIndex)
void setChannelLightSourceSettingsAttenuation(PercentFraction attenuation, int imageIndex, int channelIndex)
void setMicrobeamManipulationLightSourceSettingsAttenuation(PercentFraction attenuation, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
void setChannelLightSourceSettingsID(String id, int imageIndex, int channelIndex)
void setMicrobeamManipulationLightSourceSettingsID(String id, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
void setChannelLightSourceSettingsWavelength(PositiveInteger wavelength, int imageIndex, int channelIndex)
void setMicrobeamManipulationLightSourceSettingsWavelength(PositiveInteger wavelength, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
void setLineFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setLineFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setLineFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setLineFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setLineFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setLineID(String id, int ROIIndex, int shapeIndex)
void setLineLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setLineLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setLineStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setLineStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setLineStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setLineText(String text, int ROIIndex, int shapeIndex)
void setLineTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setLineTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setLineTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setLineTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setLineVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setLineMarkerEnd(Marker markerEnd, int ROIIndex, int shapeIndex)
void setLineMarkerStart(Marker markerStart, int ROIIndex, int shapeIndex)
void setLineX1(Double x1, int ROIIndex, int shapeIndex)
void setLineX2(Double x2, int ROIIndex, int shapeIndex)
void setLineY1(Double y1, int ROIIndex, int shapeIndex)
void setLineY2(Double y2, int ROIIndex, int shapeIndex)
void setListAnnotationAnnotationRef(String annotation, int listAnnotationIndex, int annotationRefIndex)
void setListAnnotationDescription(String description, int listAnnotationIndex)
void setListAnnotationID(String id, int listAnnotationIndex)
void setListAnnotationNamespace(String namespace, int listAnnotationIndex)
void setLongAnnotationAnnotationRef(String annotation, int longAnnotationIndex, int annotationRefIndex)
void setLongAnnotationDescription(String description, int longAnnotationIndex)
void setLongAnnotationID(String id, int longAnnotationIndex)
void setLongAnnotationNamespace(String namespace, int longAnnotationIndex)
void setLongAnnotationValue(Long value, int longAnnotationIndex)
void setMaskFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setMaskFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setMaskFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setMaskFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setMaskFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setMaskID(String id, int ROIIndex, int shapeIndex)
void setMaskLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setMaskLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setMaskStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setMaskStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setMaskStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setMaskText(String text, int ROIIndex, int shapeIndex)
void setMaskTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setMaskTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setMaskTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setMaskTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setMaskVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setMaskHeight(Double height, int ROIIndex, int shapeIndex)
void setMaskWidth(Double width, int ROIIndex, int shapeIndex)
void setMaskX(Double x, int ROIIndex, int shapeIndex)
void setMaskY(Double y, int ROIIndex, int shapeIndex)
void setMicrobeamManipulationDescription(String description, int experimentIndex, int microbeamManipulationIndex)
void setMicrobeamManipulationExperimenterRef(String experimenter, int experimentIndex, int microbeamManipulationIndex)
void setMicrobeamManipulationID(String id, int experimentIndex, int microbeamManipulationIndex)
void setMicrobeamManipulationROIRef(String roi, int experimentIndex, int microbeamManipulationIndex, int ROIRefIndex)
void setMicrobeamManipulationType(MicrobeamManipulationType type, int experimentIndex, int microbeamManipulationIndex)
void setMicroscopeLotNumber(String lotNumber, int instrumentIndex)
void setMicroscopeManufacturer(String manufacturer, int instrumentIndex)
void setMicroscopeModel(String model, int instrumentIndex)
void setMicroscopeSerialNumber(String serialNumber, int instrumentIndex)
void setMicroscopeType(MicroscopeType type, int instrumentIndex)
void setObjectiveCalibratedMagnification(Double calibratedMagnification, int instrumentIndex, int objectiveIndex)
void setObjectiveCorrection(Correction correction, int instrumentIndex, int objectiveIndex)
void setObjectiveID(String id, int instrumentIndex, int objectiveIndex)
void setObjectiveImmersion(Immersion immersion, int instrumentIndex, int objectiveIndex)
void setObjectiveIris(Boolean iris, int instrumentIndex, int objectiveIndex)
void setObjectiveLensNA(Double lensNA, int instrumentIndex, int objectiveIndex)
void setObjectiveLotNumber(String lotNumber, int instrumentIndex, int objectiveIndex)
void setObjectiveManufacturer(String manufacturer, int instrumentIndex, int objectiveIndex)
void setObjectiveModel(String model, int instrumentIndex, int objectiveIndex)
void setObjectiveNominalMagnification(PositiveInteger nominalMagnification, int instrumentIndex, int objectiveIndex)
void setObjectiveSerialNumber(String serialNumber, int instrumentIndex, int objectiveIndex)
void setObjectiveWorkingDistance(Double workingDistance, int instrumentIndex, int objectiveIndex)
void setObjectiveSettingsCorrectionCollar(Double correctionCollar, int imageIndex)
void setObjectiveSettingsID(String id, int imageIndex)
void setObjectiveSettingsMedium(Medium medium, int imageIndex)
void setObjectiveSettingsRefractiveIndex(Double refractiveIndex, int imageIndex)
void setPixelsAnnotationRef(String annotation, int imageIndex, int annotationRefIndex)
void setPixelsDimensionOrder(DimensionOrder dimensionOrder, int imageIndex)
void setPixelsID(String id, int imageIndex)
void setPixelsPhysicalSizeX(PositiveFloat physicalSizeX, int imageIndex)
void setPixelsPhysicalSizeY(PositiveFloat physicalSizeY, int imageIndex)
void setPixelsPhysicalSizeZ(PositiveFloat physicalSizeZ, int imageIndex)
void setPixelsSizeC(PositiveInteger sizeC, int imageIndex)
void setPixelsSizeT(PositiveInteger sizeT, int imageIndex)
void setPixelsSizeX(PositiveInteger sizeX, int imageIndex)
void setPixelsSizeY(PositiveInteger sizeY, int imageIndex)
void setPixelsSizeZ(PositiveInteger sizeZ, int imageIndex)
void setPixelsTimeIncrement(Double timeIncrement, int imageIndex)
void setPixelsType(PixelType type, int imageIndex)
void setPlaneAnnotationRef(String annotation, int imageIndex, int planeIndex, int annotationRefIndex)
void setPlaneDeltaT(Double deltaT, int imageIndex, int planeIndex)
void setPlaneExposureTime(Double exposureTime, int imageIndex, int planeIndex)
void setPlaneHashSHA1(String hashSHA1, int imageIndex, int planeIndex)
void setPlanePositionX(Double positionX, int imageIndex, int planeIndex)
void setPlanePositionY(Double positionY, int imageIndex, int planeIndex)
void setPlanePositionZ(Double positionZ, int imageIndex, int planeIndex)
void setPlaneTheC(NonNegativeInteger theC, int imageIndex, int planeIndex)
void setPlaneTheT(NonNegativeInteger theT, int imageIndex, int planeIndex)
void setPlaneTheZ(NonNegativeInteger theZ, int imageIndex, int planeIndex)
void setPlateAnnotationRef(String annotation, int plateIndex, int annotationRefIndex)
void setPlateColumnNamingConvention(NamingConvention columnNamingConvention, int plateIndex)
void setPlateColumns(PositiveInteger columns, int plateIndex)
void setPlateDescription(String description, int plateIndex)
void setPlateExternalIdentifier(String externalIdentifier, int plateIndex)
void setPlateFieldIndex(NonNegativeInteger fieldIndex, int plateIndex)
void setPlateID(String id, int plateIndex)
void setPlateName(String name, int plateIndex)
void setPlateRowNamingConvention(NamingConvention rowNamingConvention, int plateIndex)
void setPlateRows(PositiveInteger rows, int plateIndex)
void setPlateStatus(String status, int plateIndex)
void setPlateWellOriginX(Double wellOriginX, int plateIndex)
void setPlateWellOriginY(Double wellOriginY, int plateIndex)
void setPlateAcquisitionAnnotationRef(String annotation, int plateIndex, int plateAcquisitionIndex, int annotationRefIndex)
void setPlateAcquisitionDescription(String description, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionEndTime(Timestamp endTime, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionID(String id, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionMaximumFieldCount(PositiveInteger maximumFieldCount, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionName(String name, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionStartTime(Timestamp startTime, int plateIndex, int plateAcquisitionIndex)
void setPlateAcquisitionWellSampleRef(String wellSample, int plateIndex, int plateAcquisitionIndex, int wellSampleRefIndex)
void setPointFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setPointFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setPointFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setPointFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setPointFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setPointID(String id, int ROIIndex, int shapeIndex)
void setPointLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setPointLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setPointStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setPointStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setPointStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setPointText(String text, int ROIIndex, int shapeIndex)
void setPointTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setPointTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setPointTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setPointTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setPointVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setPointX(Double x, int ROIIndex, int shapeIndex)
void setPointY(Double y, int ROIIndex, int shapeIndex)
void setPolygonFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setPolygonFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setPolygonFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setPolygonFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setPolygonFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setPolygonID(String id, int ROIIndex, int shapeIndex)
void setPolygonLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setPolygonLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setPolygonStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setPolygonStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setPolygonStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setPolygonText(String text, int ROIIndex, int shapeIndex)
void setPolygonTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setPolygonTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setPolygonTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setPolygonTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setPolygonVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setPolygonPoints(String points, int ROIIndex, int shapeIndex)
void setPolylineFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setPolylineFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setPolylineFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setPolylineFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setPolylineFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setPolylineID(String id, int ROIIndex, int shapeIndex)
void setPolylineLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setPolylineLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setPolylineStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setPolylineStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setPolylineStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setPolylineText(String text, int ROIIndex, int shapeIndex)
void setPolylineTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setPolylineTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setPolylineTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setPolylineTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setPolylineVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setPolylineMarkerEnd(Marker markerEnd, int ROIIndex, int shapeIndex)
void setPolylineMarkerStart(Marker markerStart, int ROIIndex, int shapeIndex)
void setPolylinePoints(String points, int ROIIndex, int shapeIndex)
void setProjectAnnotationRef(String annotation, int projectIndex, int annotationRefIndex)
void setProjectDatasetRef(String dataset, int projectIndex, int datasetRefIndex)
void setProjectDescription(String description, int projectIndex)
void setProjectExperimenterGroupRef(String experimenterGroup, int projectIndex)
void setProjectExperimenterRef(String experimenter, int projectIndex)
void setProjectID(String id, int projectIndex)
void setProjectName(String name, int projectIndex)
void setROIAnnotationRef(String annotation, int ROIIndex, int annotationRefIndex)
void setROIDescription(String description, int ROIIndex)
void setROIID(String id, int ROIIndex)
void setROIName(String name, int ROIIndex)
void setROINamespace(String namespace, int ROIIndex)
void setReagentAnnotationRef(String annotation, int screenIndex, int reagentIndex, int annotationRefIndex)
void setReagentDescription(String description, int screenIndex, int reagentIndex)
void setReagentID(String id, int screenIndex, int reagentIndex)
void setReagentName(String name, int screenIndex, int reagentIndex)
void setReagentReagentIdentifier(String reagentIdentifier, int screenIndex, int reagentIndex)
void setRectangleFillColor(Color fillColor, int ROIIndex, int shapeIndex)
void setRectangleFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
void setRectangleFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
void setRectangleFontSize(NonNegativeInteger fontSize, int ROIIndex, int shapeIndex)
void setRectangleFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
void setRectangleID(String id, int ROIIndex, int shapeIndex)
void setRectangleLineCap(LineCap lineCap, int ROIIndex, int shapeIndex)
void setRectangleLocked(Boolean locked, int ROIIndex, int shapeIndex)
void setRectangleStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
void setRectangleStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
void setRectangleStrokeWidth(Double strokeWidth, int ROIIndex, int shapeIndex)
void setRectangleText(String text, int ROIIndex, int shapeIndex)
void setRectangleTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
void setRectangleTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
void setRectangleTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
void setRectangleTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
void setRectangleVisible(Boolean visible, int ROIIndex, int shapeIndex)
void setRectangleHeight(Double height, int ROIIndex, int shapeIndex)
void setRectangleWidth(Double width, int ROIIndex, int shapeIndex)
void setRectangleX(Double x, int ROIIndex, int shapeIndex)
void setRectangleY(Double y, int ROIIndex, int shapeIndex)
void setScreenAnnotationRef(String annotation, int screenIndex, int annotationRefIndex)
void setScreenDescription(String description, int screenIndex)
void setScreenID(String id, int screenIndex)
void setScreenName(String name, int screenIndex)
void setScreenPlateRef(String plate, int screenIndex, int plateRefIndex)
void setScreenProtocolDescription(String protocolDescription, int screenIndex)
void setScreenProtocolIdentifier(String protocolIdentifier, int screenIndex)
void setScreenReagentSetDescription(String reagentSetDescription, int screenIndex)
void setScreenReagentSetIdentifier(String reagentSetIdentifier, int screenIndex)
void setScreenType(String type, int screenIndex)
void setStageLabelName(String name, int imageIndex)
void setStageLabelX(Double x, int imageIndex)
void setStageLabelY(Double y, int imageIndex)
void setStageLabelZ(Double z, int imageIndex)
void setTagAnnotationAnnotationRef(String annotation, int tagAnnotationIndex, int annotationRefIndex)
void setTagAnnotationDescription(String description, int tagAnnotationIndex)
void setTagAnnotationID(String id, int tagAnnotationIndex)
void setTagAnnotationNamespace(String namespace, int tagAnnotationIndex)
void setTagAnnotationValue(String value, int tagAnnotationIndex)
void setTermAnnotationAnnotationRef(String annotation, int termAnnotationIndex, int annotationRefIndex)
void setTermAnnotationDescription(String description, int termAnnotationIndex)
void setTermAnnotationID(String id, int termAnnotationIndex)
void setTermAnnotationNamespace(String namespace, int termAnnotationIndex)
void setTermAnnotationValue(String value, int termAnnotationIndex)
void setTiffDataFirstC(NonNegativeInteger firstC, int imageIndex, int tiffDataIndex)
void setTiffDataFirstT(NonNegativeInteger firstT, int imageIndex, int tiffDataIndex)
void setTiffDataFirstZ(NonNegativeInteger firstZ, int imageIndex, int tiffDataIndex)
void setTiffDataIFD(NonNegativeInteger ifd, int imageIndex, int tiffDataIndex)
void setTiffDataPlaneCount(NonNegativeInteger planeCount, int imageIndex, int tiffDataIndex)
void setTimestampAnnotationAnnotationRef(String annotation, int timestampAnnotationIndex, int annotationRefIndex)
void setTimestampAnnotationDescription(String description, int timestampAnnotationIndex)
void setTimestampAnnotationID(String id, int timestampAnnotationIndex)
void setTimestampAnnotationNamespace(String namespace, int timestampAnnotationIndex)
void setTimestampAnnotationValue(Timestamp value, int timestampAnnotationIndex)
void setTransmittanceRangeCutIn(PositiveInteger cutIn, int instrumentIndex, int filterIndex)
void setTransmittanceRangeCutInTolerance(NonNegativeInteger cutInTolerance, int instrumentIndex, int filterIndex)
void setTransmittanceRangeCutOut(PositiveInteger cutOut, int instrumentIndex, int filterIndex)
void setTransmittanceRangeCutOutTolerance(NonNegativeInteger cutOutTolerance, int instrumentIndex, int filterIndex)
void setTransmittanceRangeTransmittance(PercentFraction transmittance, int instrumentIndex, int filterIndex)
void setUUIDValue(String value, int imageIndex, int tiffDataIndex)
void setUUIDFileName(String fileName, int imageIndex, int tiffDataIndex)
void setWellAnnotationRef(String annotation, int plateIndex, int wellIndex, int annotationRefIndex)
void setWellColor(Color color, int plateIndex, int wellIndex)
void setWellColumn(NonNegativeInteger column, int plateIndex, int wellIndex)
void setWellExternalDescription(String externalDescription, int plateIndex, int wellIndex)
void setWellExternalIdentifier(String externalIdentifier, int plateIndex, int wellIndex)
void setWellID(String id, int plateIndex, int wellIndex)
void setWellReagentRef(String reagent, int plateIndex, int wellIndex)
void setWellRow(NonNegativeInteger row, int plateIndex, int wellIndex)
void setWellType(String type, int plateIndex, int wellIndex)
void setWellSampleAnnotationRef(String annotation, int plateIndex, int wellIndex, int wellSampleIndex, int annotationRefIndex)
void setWellSampleID(String id, int plateIndex, int wellIndex, int wellSampleIndex)
void setWellSampleImageRef(String image, int plateIndex, int wellIndex, int wellSampleIndex)
void setWellSampleIndex(NonNegativeInteger index, int plateIndex, int wellIndex, int wellSampleIndex)
void setWellSamplePositionX(Double positionX, int plateIndex, int wellIndex, int wellSampleIndex)
void setWellSamplePositionY(Double positionY, int plateIndex, int wellIndex, int wellSampleIndex)
void setWellSampleTimepoint(Timestamp timepoint, int plateIndex, int wellIndex, int wellSampleIndex)
void setXMLAnnotationAnnotationRef(String annotation, int XMLAnnotationIndex, int annotationRefIndex)
void setXMLAnnotationDescription(String description, int XMLAnnotationIndex)
void setXMLAnnotationID(String id, int XMLAnnotationIndex)
void setXMLAnnotationNamespace(String namespace, int XMLAnnotationIndex)
void setXMLAnnotationValue(String value, int XMLAnnotationIndex)
Copyright © 2014 Open Microscopy Environment