public interface MetadataStore extends BaseMetadata
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()
Create root node.
|
MetadataRoot |
getRoot()
Get the root node of the metadata.
|
void |
setArcAnnotationRef(String annotation,
int instrumentIndex,
int lightSourceIndex,
int annotationRefIndex)
Set the AnnotationRef property of Arc.
|
void |
setArcID(String id,
int instrumentIndex,
int lightSourceIndex)
Set the ID property of Arc.
|
void |
setArcLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex)
Set the LotNumber property of Arc.
|
void |
setArcManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex)
Set the Manufacturer property of Arc.
|
void |
setArcModel(String model,
int instrumentIndex,
int lightSourceIndex)
Set the Model property of Arc.
|
void |
setArcPower(Power power,
int instrumentIndex,
int lightSourceIndex)
Set the Power property of Arc.
|
void |
setArcSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex)
Set the SerialNumber property of Arc.
|
void |
setArcType(ArcType type,
int instrumentIndex,
int lightSourceIndex)
Set the Type property of Arc.
|
void |
setBinaryFileBinData(byte[] base64Binary,
int fileAnnotationIndex)
Set the Base64Binary property of BinData.
|
void |
setBinaryFileBinDataBigEndian(Boolean bigEndian,
int fileAnnotationIndex)
Set the BigEndian property of BinData.
|
void |
setBinaryFileBinDataCompression(Compression compression,
int fileAnnotationIndex)
Set the Compression property of BinData.
|
void |
setBinaryFileBinDataLength(NonNegativeLong length,
int fileAnnotationIndex)
Set the Length property of BinData.
|
void |
setBinaryFileFileName(String fileName,
int fileAnnotationIndex)
Set the FileName property of BinaryFile.
|
void |
setBinaryFileMIMEType(String mimeType,
int fileAnnotationIndex)
Set the MIMEType property of BinaryFile.
|
void |
setBinaryFileSize(NonNegativeLong size,
int fileAnnotationIndex)
Set the Size property of BinaryFile.
|
void |
setBinaryOnlyMetadataFile(String metadataFile)
Set the MetadataFile property of BinaryOnly.
|
void |
setBinaryOnlyUUID(String uuid)
Set the UUID property of BinaryOnly.
|
void |
setBooleanAnnotationAnnotationRef(String annotation,
int booleanAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of BooleanAnnotation.
|
void |
setBooleanAnnotationAnnotator(String annotator,
int booleanAnnotationIndex)
Set the Annotator property of BooleanAnnotation.
|
void |
setBooleanAnnotationDescription(String description,
int booleanAnnotationIndex)
Set the Description property of BooleanAnnotation.
|
void |
setBooleanAnnotationID(String id,
int booleanAnnotationIndex)
Set the ID property of BooleanAnnotation.
|
void |
setBooleanAnnotationNamespace(String namespace,
int booleanAnnotationIndex)
Set the Namespace property of BooleanAnnotation.
|
void |
setBooleanAnnotationValue(Boolean value,
int booleanAnnotationIndex)
Set the Value property of BooleanAnnotation.
|
void |
setChannelAcquisitionMode(AcquisitionMode acquisitionMode,
int imageIndex,
int channelIndex)
Set the AcquisitionMode property of Channel.
|
void |
setChannelAnnotationRef(String annotation,
int imageIndex,
int channelIndex,
int annotationRefIndex)
Set the AnnotationRef property of Channel.
|
void |
setChannelColor(Color color,
int imageIndex,
int channelIndex)
Set the Color property of Channel.
|
void |
setChannelContrastMethod(ContrastMethod contrastMethod,
int imageIndex,
int channelIndex)
Set the ContrastMethod property of Channel.
|
void |
setChannelEmissionWavelength(Length emissionWavelength,
int imageIndex,
int channelIndex)
Set the EmissionWavelength property of Channel.
|
void |
setChannelExcitationWavelength(Length excitationWavelength,
int imageIndex,
int channelIndex)
Set the ExcitationWavelength property of Channel.
|
void |
setChannelFilterSetRef(String filterSet,
int imageIndex,
int channelIndex)
Set the FilterSetRef property of Channel.
|
void |
setChannelFluor(String fluor,
int imageIndex,
int channelIndex)
Set the Fluor property of Channel.
|
void |
setChannelID(String id,
int imageIndex,
int channelIndex)
Set the ID property of Channel.
|
void |
setChannelIlluminationType(IlluminationType illuminationType,
int imageIndex,
int channelIndex)
Set the IlluminationType property of Channel.
|
void |
setChannelLightSourceSettingsAttenuation(PercentFraction attenuation,
int imageIndex,
int channelIndex)
Set the Attenuation property of LightSourceSettings.
|
void |
setChannelLightSourceSettingsID(String id,
int imageIndex,
int channelIndex)
Set the ID property of LightSourceSettings.
|
void |
setChannelLightSourceSettingsWavelength(Length wavelength,
int imageIndex,
int channelIndex)
Set the Wavelength property of LightSourceSettings.
|
void |
setChannelName(String name,
int imageIndex,
int channelIndex)
Set the Name property of Channel.
|
void |
setChannelNDFilter(Double ndFilter,
int imageIndex,
int channelIndex)
Set the NDFilter property of Channel.
|
void |
setChannelPinholeSize(Length pinholeSize,
int imageIndex,
int channelIndex)
Set the PinholeSize property of Channel.
|
void |
setChannelPockelCellSetting(Integer pockelCellSetting,
int imageIndex,
int channelIndex)
Set the PockelCellSetting property of Channel.
|
void |
setChannelSamplesPerPixel(PositiveInteger samplesPerPixel,
int imageIndex,
int channelIndex)
Set the SamplesPerPixel property of Channel.
|
void |
setCommentAnnotationAnnotationRef(String annotation,
int commentAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of CommentAnnotation.
|
void |
setCommentAnnotationAnnotator(String annotator,
int commentAnnotationIndex)
Set the Annotator property of CommentAnnotation.
|
void |
setCommentAnnotationDescription(String description,
int commentAnnotationIndex)
Set the Description property of CommentAnnotation.
|
void |
setCommentAnnotationID(String id,
int commentAnnotationIndex)
Set the ID property of CommentAnnotation.
|
void |
setCommentAnnotationNamespace(String namespace,
int commentAnnotationIndex)
Set the Namespace property of CommentAnnotation.
|
void |
setCommentAnnotationValue(String value,
int commentAnnotationIndex)
Set the Value property of CommentAnnotation.
|
void |
setDatasetAnnotationRef(String annotation,
int datasetIndex,
int annotationRefIndex)
Set the AnnotationRef property of Dataset.
|
void |
setDatasetDescription(String description,
int datasetIndex)
Set the Description property of Dataset.
|
void |
setDatasetExperimenterGroupRef(String experimenterGroup,
int datasetIndex)
Set the ExperimenterGroupRef property of Dataset.
|
void |
setDatasetExperimenterRef(String experimenter,
int datasetIndex)
Set the ExperimenterRef property of Dataset.
|
void |
setDatasetID(String id,
int datasetIndex)
Set the ID property of Dataset.
|
void |
setDatasetImageRef(String image,
int datasetIndex,
int imageRefIndex)
Set the ImageRef property of Dataset.
|
void |
setDatasetName(String name,
int datasetIndex)
Set the Name property of Dataset.
|
void |
setDetectorAmplificationGain(Double amplificationGain,
int instrumentIndex,
int detectorIndex)
Set the AmplificationGain property of Detector.
|
void |
setDetectorAnnotationRef(String annotation,
int instrumentIndex,
int detectorIndex,
int annotationRefIndex)
Set the AnnotationRef property of Detector.
|
void |
setDetectorGain(Double gain,
int instrumentIndex,
int detectorIndex)
Set the Gain property of Detector.
|
void |
setDetectorID(String id,
int instrumentIndex,
int detectorIndex)
Set the ID property of Detector.
|
void |
setDetectorLotNumber(String lotNumber,
int instrumentIndex,
int detectorIndex)
Set the LotNumber property of Detector.
|
void |
setDetectorManufacturer(String manufacturer,
int instrumentIndex,
int detectorIndex)
Set the Manufacturer property of Detector.
|
void |
setDetectorModel(String model,
int instrumentIndex,
int detectorIndex)
Set the Model property of Detector.
|
void |
setDetectorOffset(Double offset,
int instrumentIndex,
int detectorIndex)
Set the Offset property of Detector.
|
void |
setDetectorSerialNumber(String serialNumber,
int instrumentIndex,
int detectorIndex)
Set the SerialNumber property of Detector.
|
void |
setDetectorSettingsBinning(Binning binning,
int imageIndex,
int channelIndex)
Set the Binning property of DetectorSettings.
|
void |
setDetectorSettingsGain(Double gain,
int imageIndex,
int channelIndex)
Set the Gain property of DetectorSettings.
|
void |
setDetectorSettingsID(String id,
int imageIndex,
int channelIndex)
Set the ID property of DetectorSettings.
|
void |
setDetectorSettingsIntegration(PositiveInteger integration,
int imageIndex,
int channelIndex)
Set the Integration property of DetectorSettings.
|
void |
setDetectorSettingsOffset(Double offset,
int imageIndex,
int channelIndex)
Set the Offset property of DetectorSettings.
|
void |
setDetectorSettingsReadOutRate(Frequency readOutRate,
int imageIndex,
int channelIndex)
Set the ReadOutRate property of DetectorSettings.
|
void |
setDetectorSettingsVoltage(ElectricPotential voltage,
int imageIndex,
int channelIndex)
Set the Voltage property of DetectorSettings.
|
void |
setDetectorSettingsZoom(Double zoom,
int imageIndex,
int channelIndex)
Set the Zoom property of DetectorSettings.
|
void |
setDetectorType(DetectorType type,
int instrumentIndex,
int detectorIndex)
Set the Type property of Detector.
|
void |
setDetectorVoltage(ElectricPotential voltage,
int instrumentIndex,
int detectorIndex)
Set the Voltage property of Detector.
|
void |
setDetectorZoom(Double zoom,
int instrumentIndex,
int detectorIndex)
Set the Zoom property of Detector.
|
void |
setDichroicAnnotationRef(String annotation,
int instrumentIndex,
int dichroicIndex,
int annotationRefIndex)
Set the AnnotationRef property of Dichroic.
|
void |
setDichroicID(String id,
int instrumentIndex,
int dichroicIndex)
Set the ID property of Dichroic.
|
void |
setDichroicLotNumber(String lotNumber,
int instrumentIndex,
int dichroicIndex)
Set the LotNumber property of Dichroic.
|
void |
setDichroicManufacturer(String manufacturer,
int instrumentIndex,
int dichroicIndex)
Set the Manufacturer property of Dichroic.
|
void |
setDichroicModel(String model,
int instrumentIndex,
int dichroicIndex)
Set the Model property of Dichroic.
|
void |
setDichroicSerialNumber(String serialNumber,
int instrumentIndex,
int dichroicIndex)
Set the SerialNumber property of Dichroic.
|
void |
setDoubleAnnotationAnnotationRef(String annotation,
int doubleAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of DoubleAnnotation.
|
void |
setDoubleAnnotationAnnotator(String annotator,
int doubleAnnotationIndex)
Set the Annotator property of DoubleAnnotation.
|
void |
setDoubleAnnotationDescription(String description,
int doubleAnnotationIndex)
Set the Description property of DoubleAnnotation.
|
void |
setDoubleAnnotationID(String id,
int doubleAnnotationIndex)
Set the ID property of DoubleAnnotation.
|
void |
setDoubleAnnotationNamespace(String namespace,
int doubleAnnotationIndex)
Set the Namespace property of DoubleAnnotation.
|
void |
setDoubleAnnotationValue(Double value,
int doubleAnnotationIndex)
Set the Value property of DoubleAnnotation.
|
void |
setEllipseAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Ellipse.
|
void |
setEllipseFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Ellipse.
|
void |
setEllipseFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Ellipse.
|
void |
setEllipseFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Ellipse.
|
void |
setEllipseFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Ellipse.
|
void |
setEllipseFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Ellipse.
|
void |
setEllipseID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Ellipse.
|
void |
setEllipseLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Ellipse.
|
void |
setEllipseRadiusX(Double radiusX,
int ROIIndex,
int shapeIndex)
Set the RadiusX property of Ellipse.
|
void |
setEllipseRadiusY(Double radiusY,
int ROIIndex,
int shapeIndex)
Set the RadiusY property of Ellipse.
|
void |
setEllipseStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Ellipse.
|
void |
setEllipseStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Ellipse.
|
void |
setEllipseStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Ellipse.
|
void |
setEllipseText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Ellipse.
|
void |
setEllipseTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Ellipse.
|
void |
setEllipseTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Ellipse.
|
void |
setEllipseTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Ellipse.
|
void |
setEllipseTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Ellipse.
|
void |
setEllipseX(Double x,
int ROIIndex,
int shapeIndex)
Set the X property of Ellipse.
|
void |
setEllipseY(Double y,
int ROIIndex,
int shapeIndex)
Set the Y property of Ellipse.
|
void |
setExperimentDescription(String description,
int experimentIndex)
Set the Description property of Experiment.
|
void |
setExperimenterAnnotationRef(String annotation,
int experimenterIndex,
int annotationRefIndex)
Set the AnnotationRef property of Experimenter.
|
void |
setExperimenterEmail(String email,
int experimenterIndex)
Set the Email property of Experimenter.
|
void |
setExperimenterFirstName(String firstName,
int experimenterIndex)
Set the FirstName property of Experimenter.
|
void |
setExperimenterGroupAnnotationRef(String annotation,
int experimenterGroupIndex,
int annotationRefIndex)
Set the AnnotationRef property of ExperimenterGroup.
|
void |
setExperimenterGroupDescription(String description,
int experimenterGroupIndex)
Set the Description property of ExperimenterGroup.
|
void |
setExperimenterGroupExperimenterRef(String experimenter,
int experimenterGroupIndex,
int experimenterRefIndex)
Set the ExperimenterRef property of ExperimenterGroup.
|
void |
setExperimenterGroupID(String id,
int experimenterGroupIndex)
Set the ID property of ExperimenterGroup.
|
void |
setExperimenterGroupLeader(String leader,
int experimenterGroupIndex,
int leaderIndex)
Set the Leader property of ExperimenterGroup.
|
void |
setExperimenterGroupName(String name,
int experimenterGroupIndex)
Set the Name property of ExperimenterGroup.
|
void |
setExperimenterID(String id,
int experimenterIndex)
Set the ID property of Experimenter.
|
void |
setExperimenterInstitution(String institution,
int experimenterIndex)
Set the Institution property of Experimenter.
|
void |
setExperimenterLastName(String lastName,
int experimenterIndex)
Set the LastName property of Experimenter.
|
void |
setExperimenterMiddleName(String middleName,
int experimenterIndex)
Set the MiddleName property of Experimenter.
|
void |
setExperimenterUserName(String userName,
int experimenterIndex)
Set the UserName property of Experimenter.
|
void |
setExperimentExperimenterRef(String experimenter,
int experimentIndex)
Set the ExperimenterRef property of Experiment.
|
void |
setExperimentID(String id,
int experimentIndex)
Set the ID property of Experiment.
|
void |
setExperimentType(ExperimentType type,
int experimentIndex)
Set the Type property of Experiment.
|
void |
setFilamentAnnotationRef(String annotation,
int instrumentIndex,
int lightSourceIndex,
int annotationRefIndex)
Set the AnnotationRef property of Filament.
|
void |
setFilamentID(String id,
int instrumentIndex,
int lightSourceIndex)
Set the ID property of Filament.
|
void |
setFilamentLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex)
Set the LotNumber property of Filament.
|
void |
setFilamentManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex)
Set the Manufacturer property of Filament.
|
void |
setFilamentModel(String model,
int instrumentIndex,
int lightSourceIndex)
Set the Model property of Filament.
|
void |
setFilamentPower(Power power,
int instrumentIndex,
int lightSourceIndex)
Set the Power property of Filament.
|
void |
setFilamentSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex)
Set the SerialNumber property of Filament.
|
void |
setFilamentType(FilamentType type,
int instrumentIndex,
int lightSourceIndex)
Set the Type property of Filament.
|
void |
setFileAnnotationAnnotationRef(String annotation,
int fileAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of FileAnnotation.
|
void |
setFileAnnotationAnnotator(String annotator,
int fileAnnotationIndex)
Set the Annotator property of FileAnnotation.
|
void |
setFileAnnotationDescription(String description,
int fileAnnotationIndex)
Set the Description property of FileAnnotation.
|
void |
setFileAnnotationID(String id,
int fileAnnotationIndex)
Set the ID property of FileAnnotation.
|
void |
setFileAnnotationNamespace(String namespace,
int fileAnnotationIndex)
Set the Namespace property of FileAnnotation.
|
void |
setFilterAnnotationRef(String annotation,
int instrumentIndex,
int filterIndex,
int annotationRefIndex)
Set the AnnotationRef property of Filter.
|
void |
setFilterFilterWheel(String filterWheel,
int instrumentIndex,
int filterIndex)
Set the FilterWheel property of Filter.
|
void |
setFilterID(String id,
int instrumentIndex,
int filterIndex)
Set the ID property of Filter.
|
void |
setFilterLotNumber(String lotNumber,
int instrumentIndex,
int filterIndex)
Set the LotNumber property of Filter.
|
void |
setFilterManufacturer(String manufacturer,
int instrumentIndex,
int filterIndex)
Set the Manufacturer property of Filter.
|
void |
setFilterModel(String model,
int instrumentIndex,
int filterIndex)
Set the Model property of Filter.
|
void |
setFilterSerialNumber(String serialNumber,
int instrumentIndex,
int filterIndex)
Set the SerialNumber property of Filter.
|
void |
setFilterSetDichroicRef(String dichroic,
int instrumentIndex,
int filterSetIndex)
Set the DichroicRef property of FilterSet.
|
void |
setFilterSetEmissionFilterRef(String emissionFilter,
int instrumentIndex,
int filterSetIndex,
int emissionFilterRefIndex)
Set the EmissionFilterRef property of FilterSet.
|
void |
setFilterSetExcitationFilterRef(String excitationFilter,
int instrumentIndex,
int filterSetIndex,
int excitationFilterRefIndex)
Set the ExcitationFilterRef property of FilterSet.
|
void |
setFilterSetID(String id,
int instrumentIndex,
int filterSetIndex)
Set the ID property of FilterSet.
|
void |
setFilterSetLotNumber(String lotNumber,
int instrumentIndex,
int filterSetIndex)
Set the LotNumber property of FilterSet.
|
void |
setFilterSetManufacturer(String manufacturer,
int instrumentIndex,
int filterSetIndex)
Set the Manufacturer property of FilterSet.
|
void |
setFilterSetModel(String model,
int instrumentIndex,
int filterSetIndex)
Set the Model property of FilterSet.
|
void |
setFilterSetSerialNumber(String serialNumber,
int instrumentIndex,
int filterSetIndex)
Set the SerialNumber property of FilterSet.
|
void |
setFilterType(FilterType type,
int instrumentIndex,
int filterIndex)
Set the Type property of Filter.
|
void |
setFolderAnnotationRef(String annotation,
int folderIndex,
int annotationRefIndex)
Set the AnnotationRef property of Folder.
|
void |
setFolderDescription(String description,
int folderIndex)
Set the Description property of Folder.
|
void |
setFolderFolderRef(String folder,
int folderIndex,
int folderRefIndex)
Set the FolderRef property of Folder.
|
void |
setFolderID(String id,
int folderIndex)
Set the ID property of Folder.
|
void |
setFolderImageRef(String image,
int folderIndex,
int imageRefIndex)
Set the ImageRef property of Folder.
|
void |
setFolderName(String name,
int folderIndex)
Set the Name property of Folder.
|
void |
setFolderROIRef(String roi,
int folderIndex,
int ROIRefIndex)
Set the ROIRef property of Folder.
|
void |
setGenericExcitationSourceAnnotationRef(String annotation,
int instrumentIndex,
int lightSourceIndex,
int annotationRefIndex)
Set the AnnotationRef property of GenericExcitationSource.
|
void |
setGenericExcitationSourceID(String id,
int instrumentIndex,
int lightSourceIndex)
Set the ID property of GenericExcitationSource.
|
void |
setGenericExcitationSourceLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex)
Set the LotNumber property of GenericExcitationSource.
|
void |
setGenericExcitationSourceManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex)
Set the Manufacturer property of GenericExcitationSource.
|
void |
setGenericExcitationSourceMap(List<MapPair> map,
int instrumentIndex,
int lightSourceIndex)
Set the MapAnnotation values of a GenericExcitationSource.
|
void |
setGenericExcitationSourceModel(String model,
int instrumentIndex,
int lightSourceIndex)
Set the Model property of GenericExcitationSource.
|
void |
setGenericExcitationSourcePower(Power power,
int instrumentIndex,
int lightSourceIndex)
Set the Power property of GenericExcitationSource.
|
void |
setGenericExcitationSourceSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex)
Set the SerialNumber property of GenericExcitationSource.
|
void |
setImageAcquisitionDate(Timestamp acquisitionDate,
int imageIndex)
Set the AcquisitionDate property of Image.
|
void |
setImageAnnotationRef(String annotation,
int imageIndex,
int annotationRefIndex)
Set the AnnotationRef property of Image.
|
void |
setImageDescription(String description,
int imageIndex)
Set the Description property of Image.
|
void |
setImageExperimenterGroupRef(String experimenterGroup,
int imageIndex)
Set the ExperimenterGroupRef property of Image.
|
void |
setImageExperimenterRef(String experimenter,
int imageIndex)
Set the ExperimenterRef property of Image.
|
void |
setImageExperimentRef(String experiment,
int imageIndex)
Set the ExperimentRef property of Image.
|
void |
setImageID(String id,
int imageIndex)
Set the ID property of Image.
|
void |
setImageInstrumentRef(String instrument,
int imageIndex)
Set the InstrumentRef property of Image.
|
void |
setImageMicrobeamManipulationRef(String microbeamManipulation,
int imageIndex,
int microbeamManipulationRefIndex)
Set the MicrobeamManipulationRef property of Image.
|
void |
setImageName(String name,
int imageIndex)
Set the Name property of Image.
|
void |
setImageROIRef(String roi,
int imageIndex,
int ROIRefIndex)
Set the ROIRef property of Image.
|
void |
setImagingEnvironmentAirPressure(Pressure airPressure,
int imageIndex)
Set the AirPressure property of ImagingEnvironment.
|
void |
setImagingEnvironmentCO2Percent(PercentFraction co2Percent,
int imageIndex)
Set the CO2Percent property of ImagingEnvironment.
|
void |
setImagingEnvironmentHumidity(PercentFraction humidity,
int imageIndex)
Set the Humidity property of ImagingEnvironment.
|
void |
setImagingEnvironmentMap(List<MapPair> map,
int imageIndex)
Set the MapAnnotation values of an ImagingEnvironment.
|
void |
setImagingEnvironmentTemperature(Temperature temperature,
int imageIndex)
Set the Temperature property of ImagingEnvironment.
|
void |
setInstrumentAnnotationRef(String annotation,
int instrumentIndex,
int annotationRefIndex)
Set the AnnotationRef property of Instrument.
|
void |
setInstrumentID(String id,
int instrumentIndex)
Set the ID property of Instrument.
|
void |
setLabelAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Label.
|
void |
setLabelFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Label.
|
void |
setLabelFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Label.
|
void |
setLabelFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Label.
|
void |
setLabelFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Label.
|
void |
setLabelFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Label.
|
void |
setLabelID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Label.
|
void |
setLabelLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Label.
|
void |
setLabelStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Label.
|
void |
setLabelStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Label.
|
void |
setLabelStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Label.
|
void |
setLabelText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Label.
|
void |
setLabelTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Label.
|
void |
setLabelTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Label.
|
void |
setLabelTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Label.
|
void |
setLabelTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Label.
|
void |
setLabelX(Double x,
int ROIIndex,
int shapeIndex)
Set the X property of Label.
|
void |
setLabelY(Double y,
int ROIIndex,
int shapeIndex)
Set the Y property of Label.
|
void |
setLaserAnnotationRef(String annotation,
int instrumentIndex,
int lightSourceIndex,
int annotationRefIndex)
Set the AnnotationRef property of Laser.
|
void |
setLaserFrequencyMultiplication(PositiveInteger frequencyMultiplication,
int instrumentIndex,
int lightSourceIndex)
Set the FrequencyMultiplication property of Laser.
|
void |
setLaserID(String id,
int instrumentIndex,
int lightSourceIndex)
Set the ID property of Laser.
|
void |
setLaserLaserMedium(LaserMedium laserMedium,
int instrumentIndex,
int lightSourceIndex)
Set the LaserMedium property of Laser.
|
void |
setLaserLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex)
Set the LotNumber property of Laser.
|
void |
setLaserManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex)
Set the Manufacturer property of Laser.
|
void |
setLaserModel(String model,
int instrumentIndex,
int lightSourceIndex)
Set the Model property of Laser.
|
void |
setLaserPockelCell(Boolean pockelCell,
int instrumentIndex,
int lightSourceIndex)
Set the PockelCell property of Laser.
|
void |
setLaserPower(Power power,
int instrumentIndex,
int lightSourceIndex)
Set the Power property of Laser.
|
void |
setLaserPulse(Pulse pulse,
int instrumentIndex,
int lightSourceIndex)
Set the Pulse property of Laser.
|
void |
setLaserPump(String pump,
int instrumentIndex,
int lightSourceIndex)
Set the Pump property of Laser.
|
void |
setLaserRepetitionRate(Frequency repetitionRate,
int instrumentIndex,
int lightSourceIndex)
Set the RepetitionRate property of Laser.
|
void |
setLaserSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex)
Set the SerialNumber property of Laser.
|
void |
setLaserTuneable(Boolean tuneable,
int instrumentIndex,
int lightSourceIndex)
Set the Tuneable property of Laser.
|
void |
setLaserType(LaserType type,
int instrumentIndex,
int lightSourceIndex)
Set the Type property of Laser.
|
void |
setLaserWavelength(Length wavelength,
int instrumentIndex,
int lightSourceIndex)
Set the Wavelength property of Laser.
|
void |
setLightEmittingDiodeAnnotationRef(String annotation,
int instrumentIndex,
int lightSourceIndex,
int annotationRefIndex)
Set the AnnotationRef property of LightEmittingDiode.
|
void |
setLightEmittingDiodeID(String id,
int instrumentIndex,
int lightSourceIndex)
Set the ID property of LightEmittingDiode.
|
void |
setLightEmittingDiodeLotNumber(String lotNumber,
int instrumentIndex,
int lightSourceIndex)
Set the LotNumber property of LightEmittingDiode.
|
void |
setLightEmittingDiodeManufacturer(String manufacturer,
int instrumentIndex,
int lightSourceIndex)
Set the Manufacturer property of LightEmittingDiode.
|
void |
setLightEmittingDiodeModel(String model,
int instrumentIndex,
int lightSourceIndex)
Set the Model property of LightEmittingDiode.
|
void |
setLightEmittingDiodePower(Power power,
int instrumentIndex,
int lightSourceIndex)
Set the Power property of LightEmittingDiode.
|
void |
setLightEmittingDiodeSerialNumber(String serialNumber,
int instrumentIndex,
int lightSourceIndex)
Set the SerialNumber property of LightEmittingDiode.
|
void |
setLightPathAnnotationRef(String annotation,
int imageIndex,
int channelIndex,
int annotationRefIndex)
Set the AnnotationRef property of LightPath.
|
void |
setLightPathDichroicRef(String dichroic,
int imageIndex,
int channelIndex)
Set the DichroicRef property of LightPath.
|
void |
setLightPathEmissionFilterRef(String emissionFilter,
int imageIndex,
int channelIndex,
int emissionFilterRefIndex)
Set the EmissionFilterRef property of LightPath.
|
void |
setLightPathExcitationFilterRef(String excitationFilter,
int imageIndex,
int channelIndex,
int excitationFilterRefIndex)
Set the ExcitationFilterRef property of LightPath.
|
void |
setLineAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Line.
|
void |
setLineFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Line.
|
void |
setLineFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Line.
|
void |
setLineFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Line.
|
void |
setLineFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Line.
|
void |
setLineFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Line.
|
void |
setLineID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Line.
|
void |
setLineLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Line.
|
void |
setLineMarkerEnd(Marker markerEnd,
int ROIIndex,
int shapeIndex)
Set the MarkerEnd property of Line.
|
void |
setLineMarkerStart(Marker markerStart,
int ROIIndex,
int shapeIndex)
Set the MarkerStart property of Line.
|
void |
setLineStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Line.
|
void |
setLineStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Line.
|
void |
setLineStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Line.
|
void |
setLineText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Line.
|
void |
setLineTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Line.
|
void |
setLineTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Line.
|
void |
setLineTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Line.
|
void |
setLineTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Line.
|
void |
setLineX1(Double x1,
int ROIIndex,
int shapeIndex)
Set the X1 property of Line.
|
void |
setLineX2(Double x2,
int ROIIndex,
int shapeIndex)
Set the X2 property of Line.
|
void |
setLineY1(Double y1,
int ROIIndex,
int shapeIndex)
Set the Y1 property of Line.
|
void |
setLineY2(Double y2,
int ROIIndex,
int shapeIndex)
Set the Y2 property of Line.
|
void |
setListAnnotationAnnotationRef(String annotation,
int listAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of ListAnnotation.
|
void |
setListAnnotationAnnotator(String annotator,
int listAnnotationIndex)
Set the Annotator property of ListAnnotation.
|
void |
setListAnnotationDescription(String description,
int listAnnotationIndex)
Set the Description property of ListAnnotation.
|
void |
setListAnnotationID(String id,
int listAnnotationIndex)
Set the ID property of ListAnnotation.
|
void |
setListAnnotationNamespace(String namespace,
int listAnnotationIndex)
Set the Namespace property of ListAnnotation.
|
void |
setLongAnnotationAnnotationRef(String annotation,
int longAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of LongAnnotation.
|
void |
setLongAnnotationAnnotator(String annotator,
int longAnnotationIndex)
Set the Annotator property of LongAnnotation.
|
void |
setLongAnnotationDescription(String description,
int longAnnotationIndex)
Set the Description property of LongAnnotation.
|
void |
setLongAnnotationID(String id,
int longAnnotationIndex)
Set the ID property of LongAnnotation.
|
void |
setLongAnnotationNamespace(String namespace,
int longAnnotationIndex)
Set the Namespace property of LongAnnotation.
|
void |
setLongAnnotationValue(Long value,
int longAnnotationIndex)
Set the Value property of LongAnnotation.
|
void |
setMapAnnotationAnnotationRef(String annotation,
int mapAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of MapAnnotation.
|
void |
setMapAnnotationAnnotator(String annotator,
int mapAnnotationIndex)
Set the Annotator property of MapAnnotation.
|
void |
setMapAnnotationDescription(String description,
int mapAnnotationIndex)
Set the Description property of MapAnnotation.
|
void |
setMapAnnotationID(String id,
int mapAnnotationIndex)
Set the ID property of MapAnnotation.
|
void |
setMapAnnotationNamespace(String namespace,
int mapAnnotationIndex)
Set the Namespace property of MapAnnotation.
|
void |
setMapAnnotationValue(List<MapPair> value,
int mapAnnotationIndex)
Set the values of a MapAnnotation.
|
void |
setMaskAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Mask.
|
void |
setMaskBinData(byte[] base64Binary,
int ROIIndex,
int shapeIndex)
Set the Base64Binary property of BinData.
|
void |
setMaskBinDataBigEndian(Boolean bigEndian,
int ROIIndex,
int shapeIndex)
Set the BigEndian property of BinData.
|
void |
setMaskBinDataCompression(Compression compression,
int ROIIndex,
int shapeIndex)
Set the Compression property of BinData.
|
void |
setMaskBinDataLength(NonNegativeLong length,
int ROIIndex,
int shapeIndex)
Set the Length property of BinData.
|
void |
setMaskFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Mask.
|
void |
setMaskFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Mask.
|
void |
setMaskFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Mask.
|
void |
setMaskFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Mask.
|
void |
setMaskFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Mask.
|
void |
setMaskHeight(Double height,
int ROIIndex,
int shapeIndex)
Set the Height property of Mask.
|
void |
setMaskID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Mask.
|
void |
setMaskLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Mask.
|
void |
setMaskStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Mask.
|
void |
setMaskStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Mask.
|
void |
setMaskStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Mask.
|
void |
setMaskText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Mask.
|
void |
setMaskTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Mask.
|
void |
setMaskTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Mask.
|
void |
setMaskTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Mask.
|
void |
setMaskTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Mask.
|
void |
setMaskWidth(Double width,
int ROIIndex,
int shapeIndex)
Set the Width property of Mask.
|
void |
setMaskX(Double x,
int ROIIndex,
int shapeIndex)
Set the X property of Mask.
|
void |
setMaskY(Double y,
int ROIIndex,
int shapeIndex)
Set the Y property of Mask.
|
void |
setMicrobeamManipulationDescription(String description,
int experimentIndex,
int microbeamManipulationIndex)
Set the Description property of MicrobeamManipulation.
|
void |
setMicrobeamManipulationExperimenterRef(String experimenter,
int experimentIndex,
int microbeamManipulationIndex)
Set the ExperimenterRef property of MicrobeamManipulation.
|
void |
setMicrobeamManipulationID(String id,
int experimentIndex,
int microbeamManipulationIndex)
Set the ID property of MicrobeamManipulation.
|
void |
setMicrobeamManipulationLightSourceSettingsAttenuation(PercentFraction attenuation,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex)
Set the Attenuation property of LightSourceSettings.
|
void |
setMicrobeamManipulationLightSourceSettingsID(String id,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex)
Set the ID property of LightSourceSettings.
|
void |
setMicrobeamManipulationLightSourceSettingsWavelength(Length wavelength,
int experimentIndex,
int microbeamManipulationIndex,
int lightSourceSettingsIndex)
Set the Wavelength property of LightSourceSettings.
|
void |
setMicrobeamManipulationROIRef(String roi,
int experimentIndex,
int microbeamManipulationIndex,
int ROIRefIndex)
Set the ROIRef property of MicrobeamManipulation.
|
void |
setMicrobeamManipulationType(MicrobeamManipulationType type,
int experimentIndex,
int microbeamManipulationIndex)
Set the Type property of MicrobeamManipulation.
|
void |
setMicroscopeLotNumber(String lotNumber,
int instrumentIndex)
Set the LotNumber property of Microscope.
|
void |
setMicroscopeManufacturer(String manufacturer,
int instrumentIndex)
Set the Manufacturer property of Microscope.
|
void |
setMicroscopeModel(String model,
int instrumentIndex)
Set the Model property of Microscope.
|
void |
setMicroscopeSerialNumber(String serialNumber,
int instrumentIndex)
Set the SerialNumber property of Microscope.
|
void |
setMicroscopeType(MicroscopeType type,
int instrumentIndex)
Set the Type property of Microscope.
|
void |
setObjectiveAnnotationRef(String annotation,
int instrumentIndex,
int objectiveIndex,
int annotationRefIndex)
Set the AnnotationRef property of Objective.
|
void |
setObjectiveCalibratedMagnification(Double calibratedMagnification,
int instrumentIndex,
int objectiveIndex)
Set the CalibratedMagnification property of Objective.
|
void |
setObjectiveCorrection(Correction correction,
int instrumentIndex,
int objectiveIndex)
Set the Correction property of Objective.
|
void |
setObjectiveID(String id,
int instrumentIndex,
int objectiveIndex)
Set the ID property of Objective.
|
void |
setObjectiveImmersion(Immersion immersion,
int instrumentIndex,
int objectiveIndex)
Set the Immersion property of Objective.
|
void |
setObjectiveIris(Boolean iris,
int instrumentIndex,
int objectiveIndex)
Set the Iris property of Objective.
|
void |
setObjectiveLensNA(Double lensNA,
int instrumentIndex,
int objectiveIndex)
Set the LensNA property of Objective.
|
void |
setObjectiveLotNumber(String lotNumber,
int instrumentIndex,
int objectiveIndex)
Set the LotNumber property of Objective.
|
void |
setObjectiveManufacturer(String manufacturer,
int instrumentIndex,
int objectiveIndex)
Set the Manufacturer property of Objective.
|
void |
setObjectiveModel(String model,
int instrumentIndex,
int objectiveIndex)
Set the Model property of Objective.
|
void |
setObjectiveNominalMagnification(Double nominalMagnification,
int instrumentIndex,
int objectiveIndex)
Set the NominalMagnification property of Objective.
|
void |
setObjectiveSerialNumber(String serialNumber,
int instrumentIndex,
int objectiveIndex)
Set the SerialNumber property of Objective.
|
void |
setObjectiveSettingsCorrectionCollar(Double correctionCollar,
int imageIndex)
Set the CorrectionCollar property of ObjectiveSettings.
|
void |
setObjectiveSettingsID(String id,
int imageIndex)
Set the ID property of ObjectiveSettings.
|
void |
setObjectiveSettingsMedium(Medium medium,
int imageIndex)
Set the Medium property of ObjectiveSettings.
|
void |
setObjectiveSettingsRefractiveIndex(Double refractiveIndex,
int imageIndex)
Set the RefractiveIndex property of ObjectiveSettings.
|
void |
setObjectiveWorkingDistance(Length workingDistance,
int instrumentIndex,
int objectiveIndex)
Set the WorkingDistance property of Objective.
|
void |
setPixelsBigEndian(Boolean bigEndian,
int imageIndex)
Set the BigEndian property of Pixels.
|
void |
setPixelsBinData(byte[] base64Binary,
int imageIndex,
int binDataIndex)
Set the Base64Binary property of BinData.
|
void |
setPixelsBinDataBigEndian(Boolean bigEndian,
int imageIndex,
int binDataIndex)
Set the BigEndian property of BinData.
|
void |
setPixelsBinDataCompression(Compression compression,
int imageIndex,
int binDataIndex)
Set the Compression property of BinData.
|
void |
setPixelsBinDataLength(NonNegativeLong length,
int imageIndex,
int binDataIndex)
Set the Length property of BinData.
|
void |
setPixelsDimensionOrder(DimensionOrder dimensionOrder,
int imageIndex)
Set the DimensionOrder property of Pixels.
|
void |
setPixelsID(String id,
int imageIndex)
Set the ID property of Pixels.
|
void |
setPixelsInterleaved(Boolean interleaved,
int imageIndex)
Set the Interleaved property of Pixels.
|
void |
setPixelsPhysicalSizeX(Length physicalSizeX,
int imageIndex)
Set the PhysicalSizeX property of Pixels.
|
void |
setPixelsPhysicalSizeY(Length physicalSizeY,
int imageIndex)
Set the PhysicalSizeY property of Pixels.
|
void |
setPixelsPhysicalSizeZ(Length physicalSizeZ,
int imageIndex)
Set the PhysicalSizeZ property of Pixels.
|
void |
setPixelsSignificantBits(PositiveInteger significantBits,
int imageIndex)
Set the SignificantBits property of Pixels.
|
void |
setPixelsSizeC(PositiveInteger sizeC,
int imageIndex)
Set the SizeC property of Pixels.
|
void |
setPixelsSizeT(PositiveInteger sizeT,
int imageIndex)
Set the SizeT property of Pixels.
|
void |
setPixelsSizeX(PositiveInteger sizeX,
int imageIndex)
Set the SizeX property of Pixels.
|
void |
setPixelsSizeY(PositiveInteger sizeY,
int imageIndex)
Set the SizeY property of Pixels.
|
void |
setPixelsSizeZ(PositiveInteger sizeZ,
int imageIndex)
Set the SizeZ property of Pixels.
|
void |
setPixelsTimeIncrement(Time timeIncrement,
int imageIndex)
Set the TimeIncrement property of Pixels.
|
void |
setPixelsType(PixelType type,
int imageIndex)
Set the Type property of Pixels.
|
void |
setPlaneAnnotationRef(String annotation,
int imageIndex,
int planeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Plane.
|
void |
setPlaneDeltaT(Time deltaT,
int imageIndex,
int planeIndex)
Set the DeltaT property of Plane.
|
void |
setPlaneExposureTime(Time exposureTime,
int imageIndex,
int planeIndex)
Set the ExposureTime property of Plane.
|
void |
setPlaneHashSHA1(String hashSHA1,
int imageIndex,
int planeIndex)
Set the HashSHA1 property of Plane.
|
void |
setPlanePositionX(Length positionX,
int imageIndex,
int planeIndex)
Set the PositionX property of Plane.
|
void |
setPlanePositionY(Length positionY,
int imageIndex,
int planeIndex)
Set the PositionY property of Plane.
|
void |
setPlanePositionZ(Length positionZ,
int imageIndex,
int planeIndex)
Set the PositionZ property of Plane.
|
void |
setPlaneTheC(NonNegativeInteger theC,
int imageIndex,
int planeIndex)
Set the TheC property of Plane.
|
void |
setPlaneTheT(NonNegativeInteger theT,
int imageIndex,
int planeIndex)
Set the TheT property of Plane.
|
void |
setPlaneTheZ(NonNegativeInteger theZ,
int imageIndex,
int planeIndex)
Set the TheZ property of Plane.
|
void |
setPlateAcquisitionAnnotationRef(String annotation,
int plateIndex,
int plateAcquisitionIndex,
int annotationRefIndex)
Set the AnnotationRef property of PlateAcquisition.
|
void |
setPlateAcquisitionDescription(String description,
int plateIndex,
int plateAcquisitionIndex)
Set the Description property of PlateAcquisition.
|
void |
setPlateAcquisitionEndTime(Timestamp endTime,
int plateIndex,
int plateAcquisitionIndex)
Set the EndTime property of PlateAcquisition.
|
void |
setPlateAcquisitionID(String id,
int plateIndex,
int plateAcquisitionIndex)
Set the ID property of PlateAcquisition.
|
void |
setPlateAcquisitionMaximumFieldCount(PositiveInteger maximumFieldCount,
int plateIndex,
int plateAcquisitionIndex)
Set the MaximumFieldCount property of PlateAcquisition.
|
void |
setPlateAcquisitionName(String name,
int plateIndex,
int plateAcquisitionIndex)
Set the Name property of PlateAcquisition.
|
void |
setPlateAcquisitionStartTime(Timestamp startTime,
int plateIndex,
int plateAcquisitionIndex)
Set the StartTime property of PlateAcquisition.
|
void |
setPlateAcquisitionWellSampleRef(String wellSample,
int plateIndex,
int plateAcquisitionIndex,
int wellSampleRefIndex)
Set the WellSampleRef property of PlateAcquisition.
|
void |
setPlateAnnotationRef(String annotation,
int plateIndex,
int annotationRefIndex)
Set the AnnotationRef property of Plate.
|
void |
setPlateColumnNamingConvention(NamingConvention columnNamingConvention,
int plateIndex)
Set the ColumnNamingConvention property of Plate.
|
void |
setPlateColumns(PositiveInteger columns,
int plateIndex)
Set the Columns property of Plate.
|
void |
setPlateDescription(String description,
int plateIndex)
Set the Description property of Plate.
|
void |
setPlateExternalIdentifier(String externalIdentifier,
int plateIndex)
Set the ExternalIdentifier property of Plate.
|
void |
setPlateFieldIndex(NonNegativeInteger fieldIndex,
int plateIndex)
Set the FieldIndex property of Plate.
|
void |
setPlateID(String id,
int plateIndex)
Set the ID property of Plate.
|
void |
setPlateName(String name,
int plateIndex)
Set the Name property of Plate.
|
void |
setPlateRowNamingConvention(NamingConvention rowNamingConvention,
int plateIndex)
Set the RowNamingConvention property of Plate.
|
void |
setPlateRows(PositiveInteger rows,
int plateIndex)
Set the Rows property of Plate.
|
void |
setPlateStatus(String status,
int plateIndex)
Set the Status property of Plate.
|
void |
setPlateWellOriginX(Length wellOriginX,
int plateIndex)
Set the WellOriginX property of Plate.
|
void |
setPlateWellOriginY(Length wellOriginY,
int plateIndex)
Set the WellOriginY property of Plate.
|
void |
setPointAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Point.
|
void |
setPointFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Point.
|
void |
setPointFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Point.
|
void |
setPointFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Point.
|
void |
setPointFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Point.
|
void |
setPointFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Point.
|
void |
setPointID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Point.
|
void |
setPointLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Point.
|
void |
setPointStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Point.
|
void |
setPointStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Point.
|
void |
setPointStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Point.
|
void |
setPointText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Point.
|
void |
setPointTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Point.
|
void |
setPointTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Point.
|
void |
setPointTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Point.
|
void |
setPointTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Point.
|
void |
setPointX(Double x,
int ROIIndex,
int shapeIndex)
Set the X property of Point.
|
void |
setPointY(Double y,
int ROIIndex,
int shapeIndex)
Set the Y property of Point.
|
void |
setPolygonAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Polygon.
|
void |
setPolygonFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Polygon.
|
void |
setPolygonFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Polygon.
|
void |
setPolygonFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Polygon.
|
void |
setPolygonFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Polygon.
|
void |
setPolygonFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Polygon.
|
void |
setPolygonID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Polygon.
|
void |
setPolygonLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Polygon.
|
void |
setPolygonPoints(String points,
int ROIIndex,
int shapeIndex)
Set the Points property of Polygon.
|
void |
setPolygonStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Polygon.
|
void |
setPolygonStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Polygon.
|
void |
setPolygonStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Polygon.
|
void |
setPolygonText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Polygon.
|
void |
setPolygonTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Polygon.
|
void |
setPolygonTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Polygon.
|
void |
setPolygonTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Polygon.
|
void |
setPolygonTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Polygon.
|
void |
setPolylineAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Polyline.
|
void |
setPolylineFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Polyline.
|
void |
setPolylineFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Polyline.
|
void |
setPolylineFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Polyline.
|
void |
setPolylineFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Polyline.
|
void |
setPolylineFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Polyline.
|
void |
setPolylineID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Polyline.
|
void |
setPolylineLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Polyline.
|
void |
setPolylineMarkerEnd(Marker markerEnd,
int ROIIndex,
int shapeIndex)
Set the MarkerEnd property of Polyline.
|
void |
setPolylineMarkerStart(Marker markerStart,
int ROIIndex,
int shapeIndex)
Set the MarkerStart property of Polyline.
|
void |
setPolylinePoints(String points,
int ROIIndex,
int shapeIndex)
Set the Points property of Polyline.
|
void |
setPolylineStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Polyline.
|
void |
setPolylineStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Polyline.
|
void |
setPolylineStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Polyline.
|
void |
setPolylineText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Polyline.
|
void |
setPolylineTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Polyline.
|
void |
setPolylineTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Polyline.
|
void |
setPolylineTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Polyline.
|
void |
setPolylineTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Polyline.
|
void |
setProjectAnnotationRef(String annotation,
int projectIndex,
int annotationRefIndex)
Set the AnnotationRef property of Project.
|
void |
setProjectDatasetRef(String dataset,
int projectIndex,
int datasetRefIndex)
Set the DatasetRef property of Project.
|
void |
setProjectDescription(String description,
int projectIndex)
Set the Description property of Project.
|
void |
setProjectExperimenterGroupRef(String experimenterGroup,
int projectIndex)
Set the ExperimenterGroupRef property of Project.
|
void |
setProjectExperimenterRef(String experimenter,
int projectIndex)
Set the ExperimenterRef property of Project.
|
void |
setProjectID(String id,
int projectIndex)
Set the ID property of Project.
|
void |
setProjectName(String name,
int projectIndex)
Set the Name property of Project.
|
void |
setReagentAnnotationRef(String annotation,
int screenIndex,
int reagentIndex,
int annotationRefIndex)
Set the AnnotationRef property of Reagent.
|
void |
setReagentDescription(String description,
int screenIndex,
int reagentIndex)
Set the Description property of Reagent.
|
void |
setReagentID(String id,
int screenIndex,
int reagentIndex)
Set the ID property of Reagent.
|
void |
setReagentName(String name,
int screenIndex,
int reagentIndex)
Set the Name property of Reagent.
|
void |
setReagentReagentIdentifier(String reagentIdentifier,
int screenIndex,
int reagentIndex)
Set the ReagentIdentifier property of Reagent.
|
void |
setRectangleAnnotationRef(String annotation,
int ROIIndex,
int shapeIndex,
int annotationRefIndex)
Set the AnnotationRef property of Rectangle.
|
void |
setRectangleFillColor(Color fillColor,
int ROIIndex,
int shapeIndex)
Set the FillColor property of Rectangle.
|
void |
setRectangleFillRule(FillRule fillRule,
int ROIIndex,
int shapeIndex)
Set the FillRule property of Rectangle.
|
void |
setRectangleFontFamily(FontFamily fontFamily,
int ROIIndex,
int shapeIndex)
Set the FontFamily property of Rectangle.
|
void |
setRectangleFontSize(Length fontSize,
int ROIIndex,
int shapeIndex)
Set the FontSize property of Rectangle.
|
void |
setRectangleFontStyle(FontStyle fontStyle,
int ROIIndex,
int shapeIndex)
Set the FontStyle property of Rectangle.
|
void |
setRectangleHeight(Double height,
int ROIIndex,
int shapeIndex)
Set the Height property of Rectangle.
|
void |
setRectangleID(String id,
int ROIIndex,
int shapeIndex)
Set the ID property of Rectangle.
|
void |
setRectangleLocked(Boolean locked,
int ROIIndex,
int shapeIndex)
Set the Locked property of Rectangle.
|
void |
setRectangleStrokeColor(Color strokeColor,
int ROIIndex,
int shapeIndex)
Set the StrokeColor property of Rectangle.
|
void |
setRectangleStrokeDashArray(String strokeDashArray,
int ROIIndex,
int shapeIndex)
Set the StrokeDashArray property of Rectangle.
|
void |
setRectangleStrokeWidth(Length strokeWidth,
int ROIIndex,
int shapeIndex)
Set the StrokeWidth property of Rectangle.
|
void |
setRectangleText(String text,
int ROIIndex,
int shapeIndex)
Set the Text property of Rectangle.
|
void |
setRectangleTheC(NonNegativeInteger theC,
int ROIIndex,
int shapeIndex)
Set the TheC property of Rectangle.
|
void |
setRectangleTheT(NonNegativeInteger theT,
int ROIIndex,
int shapeIndex)
Set the TheT property of Rectangle.
|
void |
setRectangleTheZ(NonNegativeInteger theZ,
int ROIIndex,
int shapeIndex)
Set the TheZ property of Rectangle.
|
void |
setRectangleTransform(AffineTransform transform,
int ROIIndex,
int shapeIndex)
Set the Transform property of Rectangle.
|
void |
setRectangleWidth(Double width,
int ROIIndex,
int shapeIndex)
Set the Width property of Rectangle.
|
void |
setRectangleX(Double x,
int ROIIndex,
int shapeIndex)
Set the X property of Rectangle.
|
void |
setRectangleY(Double y,
int ROIIndex,
int shapeIndex)
Set the Y property of Rectangle.
|
void |
setRightsRightsHeld(String rightsHeld)
Set the RightsHeld property of Rights.
|
void |
setRightsRightsHolder(String rightsHolder)
Set the RightsHolder property of Rights.
|
void |
setROIAnnotationRef(String annotation,
int ROIIndex,
int annotationRefIndex)
Set the AnnotationRef property of ROI.
|
void |
setROIDescription(String description,
int ROIIndex)
Set the Description property of ROI.
|
void |
setROIID(String id,
int ROIIndex)
Set the ID property of ROI.
|
void |
setROIName(String name,
int ROIIndex)
Set the Name property of ROI.
|
void |
setRoot(MetadataRoot root)
Set the root node of the metadata.
|
void |
setScreenAnnotationRef(String annotation,
int screenIndex,
int annotationRefIndex)
Set the AnnotationRef property of Screen.
|
void |
setScreenDescription(String description,
int screenIndex)
Set the Description property of Screen.
|
void |
setScreenID(String id,
int screenIndex)
Set the ID property of Screen.
|
void |
setScreenName(String name,
int screenIndex)
Set the Name property of Screen.
|
void |
setScreenPlateRef(String plate,
int screenIndex,
int plateRefIndex)
Set the PlateRef property of Screen.
|
void |
setScreenProtocolDescription(String protocolDescription,
int screenIndex)
Set the ProtocolDescription property of Screen.
|
void |
setScreenProtocolIdentifier(String protocolIdentifier,
int screenIndex)
Set the ProtocolIdentifier property of Screen.
|
void |
setScreenReagentSetDescription(String reagentSetDescription,
int screenIndex)
Set the ReagentSetDescription property of Screen.
|
void |
setScreenReagentSetIdentifier(String reagentSetIdentifier,
int screenIndex)
Set the ReagentSetIdentifier property of Screen.
|
void |
setScreenType(String type,
int screenIndex)
Set the Type property of Screen.
|
void |
setStageLabelName(String name,
int imageIndex)
Set the Name property of StageLabel.
|
void |
setStageLabelX(Length x,
int imageIndex)
Set the X property of StageLabel.
|
void |
setStageLabelY(Length y,
int imageIndex)
Set the Y property of StageLabel.
|
void |
setStageLabelZ(Length z,
int imageIndex)
Set the Z property of StageLabel.
|
void |
setTagAnnotationAnnotationRef(String annotation,
int tagAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of TagAnnotation.
|
void |
setTagAnnotationAnnotator(String annotator,
int tagAnnotationIndex)
Set the Annotator property of TagAnnotation.
|
void |
setTagAnnotationDescription(String description,
int tagAnnotationIndex)
Set the Description property of TagAnnotation.
|
void |
setTagAnnotationID(String id,
int tagAnnotationIndex)
Set the ID property of TagAnnotation.
|
void |
setTagAnnotationNamespace(String namespace,
int tagAnnotationIndex)
Set the Namespace property of TagAnnotation.
|
void |
setTagAnnotationValue(String value,
int tagAnnotationIndex)
Set the Value property of TagAnnotation.
|
void |
setTermAnnotationAnnotationRef(String annotation,
int termAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of TermAnnotation.
|
void |
setTermAnnotationAnnotator(String annotator,
int termAnnotationIndex)
Set the Annotator property of TermAnnotation.
|
void |
setTermAnnotationDescription(String description,
int termAnnotationIndex)
Set the Description property of TermAnnotation.
|
void |
setTermAnnotationID(String id,
int termAnnotationIndex)
Set the ID property of TermAnnotation.
|
void |
setTermAnnotationNamespace(String namespace,
int termAnnotationIndex)
Set the Namespace property of TermAnnotation.
|
void |
setTermAnnotationValue(String value,
int termAnnotationIndex)
Set the Value property of TermAnnotation.
|
void |
setTiffDataFirstC(NonNegativeInteger firstC,
int imageIndex,
int tiffDataIndex)
Set the FirstC property of TiffData.
|
void |
setTiffDataFirstT(NonNegativeInteger firstT,
int imageIndex,
int tiffDataIndex)
Set the FirstT property of TiffData.
|
void |
setTiffDataFirstZ(NonNegativeInteger firstZ,
int imageIndex,
int tiffDataIndex)
Set the FirstZ property of TiffData.
|
void |
setTiffDataIFD(NonNegativeInteger ifd,
int imageIndex,
int tiffDataIndex)
Set the IFD property of TiffData.
|
void |
setTiffDataPlaneCount(NonNegativeInteger planeCount,
int imageIndex,
int tiffDataIndex)
Set the PlaneCount property of TiffData.
|
void |
setTimestampAnnotationAnnotationRef(String annotation,
int timestampAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of TimestampAnnotation.
|
void |
setTimestampAnnotationAnnotator(String annotator,
int timestampAnnotationIndex)
Set the Annotator property of TimestampAnnotation.
|
void |
setTimestampAnnotationDescription(String description,
int timestampAnnotationIndex)
Set the Description property of TimestampAnnotation.
|
void |
setTimestampAnnotationID(String id,
int timestampAnnotationIndex)
Set the ID property of TimestampAnnotation.
|
void |
setTimestampAnnotationNamespace(String namespace,
int timestampAnnotationIndex)
Set the Namespace property of TimestampAnnotation.
|
void |
setTimestampAnnotationValue(Timestamp value,
int timestampAnnotationIndex)
Set the Value property of TimestampAnnotation.
|
void |
setTransmittanceRangeCutIn(Length cutIn,
int instrumentIndex,
int filterIndex)
Set the CutIn property of TransmittanceRange.
|
void |
setTransmittanceRangeCutInTolerance(Length cutInTolerance,
int instrumentIndex,
int filterIndex)
Set the CutInTolerance property of TransmittanceRange.
|
void |
setTransmittanceRangeCutOut(Length cutOut,
int instrumentIndex,
int filterIndex)
Set the CutOut property of TransmittanceRange.
|
void |
setTransmittanceRangeCutOutTolerance(Length cutOutTolerance,
int instrumentIndex,
int filterIndex)
Set the CutOutTolerance property of TransmittanceRange.
|
void |
setTransmittanceRangeTransmittance(PercentFraction transmittance,
int instrumentIndex,
int filterIndex)
Set the Transmittance property of TransmittanceRange.
|
void |
setUUID(String uuid)
Set the UUID associated with this collection of metadata.
|
void |
setUUIDFileName(String fileName,
int imageIndex,
int tiffDataIndex)
Set the FileName property of UUID.
|
void |
setUUIDValue(String value,
int imageIndex,
int tiffDataIndex)
Set the text value of UUID.
|
void |
setWellAnnotationRef(String annotation,
int plateIndex,
int wellIndex,
int annotationRefIndex)
Set the AnnotationRef property of Well.
|
void |
setWellColor(Color color,
int plateIndex,
int wellIndex)
Set the Color property of Well.
|
void |
setWellColumn(NonNegativeInteger column,
int plateIndex,
int wellIndex)
Set the Column property of Well.
|
void |
setWellExternalDescription(String externalDescription,
int plateIndex,
int wellIndex)
Set the ExternalDescription property of Well.
|
void |
setWellExternalIdentifier(String externalIdentifier,
int plateIndex,
int wellIndex)
Set the ExternalIdentifier property of Well.
|
void |
setWellID(String id,
int plateIndex,
int wellIndex)
Set the ID property of Well.
|
void |
setWellReagentRef(String reagent,
int plateIndex,
int wellIndex)
Set the ReagentRef property of Well.
|
void |
setWellRow(NonNegativeInteger row,
int plateIndex,
int wellIndex)
Set the Row property of Well.
|
void |
setWellSampleID(String id,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the ID property of WellSample.
|
void |
setWellSampleImageRef(String image,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the ImageRef property of WellSample.
|
void |
setWellSampleIndex(NonNegativeInteger index,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the Index property of WellSample.
|
void |
setWellSamplePositionX(Length positionX,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the PositionX property of WellSample.
|
void |
setWellSamplePositionY(Length positionY,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the PositionY property of WellSample.
|
void |
setWellSampleTimepoint(Timestamp timepoint,
int plateIndex,
int wellIndex,
int wellSampleIndex)
Set the Timepoint property of WellSample.
|
void |
setWellType(String type,
int plateIndex,
int wellIndex)
Set the Type property of Well.
|
void |
setXMLAnnotationAnnotationRef(String annotation,
int XMLAnnotationIndex,
int annotationRefIndex)
Set the AnnotationRef property of XMLAnnotation.
|
void |
setXMLAnnotationAnnotator(String annotator,
int XMLAnnotationIndex)
Set the Annotator property of XMLAnnotation.
|
void |
setXMLAnnotationDescription(String description,
int XMLAnnotationIndex)
Set the Description property of XMLAnnotation.
|
void |
setXMLAnnotationID(String id,
int XMLAnnotationIndex)
Set the ID property of XMLAnnotation.
|
void |
setXMLAnnotationNamespace(String namespace,
int XMLAnnotationIndex)
Set the Namespace property of XMLAnnotation.
|
void |
setXMLAnnotationValue(String value,
int XMLAnnotationIndex)
Set the Value property of XMLAnnotation.
|
void createRoot()
MetadataRoot getRoot()
void setRoot(MetadataRoot root)
root
- the root node.void setMapAnnotationValue(List<MapPair> value, int mapAnnotationIndex)
value
- the MapAnnotation values to set.mapAnnotationIndex
- the MapAnnotation index.void setGenericExcitationSourceMap(List<MapPair> map, int instrumentIndex, int lightSourceIndex)
map
- the MapAnnotation values to set.instrumentIndex
- the Instrument index.void setImagingEnvironmentMap(List<MapPair> map, int imageIndex)
map
- the MapAnnotation values to set.imageIndex
- the Image index.void setUUID(String uuid)
uuid
- the UUID to set.void setArcAnnotationRef(String annotation, int instrumentIndex, int lightSourceIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.annotationRefIndex
- AnnotationRef index (unused).void setArcID(String id, int instrumentIndex, int lightSourceIndex)
id
- ID to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcModel(String model, int instrumentIndex, int lightSourceIndex)
model
- Model to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcPower(Power power, int instrumentIndex, int lightSourceIndex)
power
- Power to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setArcType(ArcType type, int instrumentIndex, int lightSourceIndex)
type
- Type to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setBinaryFileBinData(byte[] base64Binary, int fileAnnotationIndex)
base64Binary
- Base64Binary to set.fileAnnotationIndex
- the FileAnnotation index.void setMaskBinData(byte[] base64Binary, int ROIIndex, int shapeIndex)
base64Binary
- Base64Binary to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPixelsBinData(byte[] base64Binary, int imageIndex, int binDataIndex)
base64Binary
- Base64Binary to set.imageIndex
- the Image index.binDataIndex
- the BinData index.void setBinaryFileBinDataBigEndian(Boolean bigEndian, int fileAnnotationIndex)
bigEndian
- BigEndian to set.fileAnnotationIndex
- the FileAnnotation index.void setMaskBinDataBigEndian(Boolean bigEndian, int ROIIndex, int shapeIndex)
bigEndian
- BigEndian to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPixelsBinDataBigEndian(Boolean bigEndian, int imageIndex, int binDataIndex)
bigEndian
- BigEndian to set.imageIndex
- the Image index.binDataIndex
- the BinData index.void setBinaryFileBinDataCompression(Compression compression, int fileAnnotationIndex)
compression
- Compression to set.fileAnnotationIndex
- the FileAnnotation index.void setMaskBinDataCompression(Compression compression, int ROIIndex, int shapeIndex)
compression
- Compression to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPixelsBinDataCompression(Compression compression, int imageIndex, int binDataIndex)
compression
- Compression to set.imageIndex
- the Image index.binDataIndex
- the BinData index.void setBinaryFileBinDataLength(NonNegativeLong length, int fileAnnotationIndex)
length
- Length to set.fileAnnotationIndex
- the FileAnnotation index.void setMaskBinDataLength(NonNegativeLong length, int ROIIndex, int shapeIndex)
length
- Length to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPixelsBinDataLength(NonNegativeLong length, int imageIndex, int binDataIndex)
length
- Length to set.imageIndex
- the Image index.binDataIndex
- the BinData index.void setBinaryFileFileName(String fileName, int fileAnnotationIndex)
fileName
- FileName to set.fileAnnotationIndex
- the FileAnnotation index.void setBinaryFileMIMEType(String mimeType, int fileAnnotationIndex)
mimeType
- MIMEType to set.fileAnnotationIndex
- the FileAnnotation index.void setBinaryFileSize(NonNegativeLong size, int fileAnnotationIndex)
size
- Size to set.fileAnnotationIndex
- the FileAnnotation index.void setBinaryOnlyMetadataFile(String metadataFile)
metadataFile
- MetadataFile to set.void setBinaryOnlyUUID(String uuid)
uuid
- UUID to set.void setBooleanAnnotationAnnotationRef(String annotation, int booleanAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.booleanAnnotationIndex
- the BooleanAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setBooleanAnnotationAnnotator(String annotator, int booleanAnnotationIndex)
annotator
- Annotator to set.booleanAnnotationIndex
- the BooleanAnnotation index.void setBooleanAnnotationDescription(String description, int booleanAnnotationIndex)
description
- Description to set.booleanAnnotationIndex
- the BooleanAnnotation index.void setBooleanAnnotationID(String id, int booleanAnnotationIndex)
id
- ID to set.booleanAnnotationIndex
- the BooleanAnnotation index.void setBooleanAnnotationNamespace(String namespace, int booleanAnnotationIndex)
namespace
- Namespace to set.booleanAnnotationIndex
- the BooleanAnnotation index.void setBooleanAnnotationValue(Boolean value, int booleanAnnotationIndex)
value
- Value to set.booleanAnnotationIndex
- the BooleanAnnotation index.void setChannelAcquisitionMode(AcquisitionMode acquisitionMode, int imageIndex, int channelIndex)
acquisitionMode
- AcquisitionMode to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelAnnotationRef(String annotation, int imageIndex, int channelIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.annotationRefIndex
- AnnotationRef index (unused).void setChannelColor(Color color, int imageIndex, int channelIndex)
color
- Color to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelContrastMethod(ContrastMethod contrastMethod, int imageIndex, int channelIndex)
contrastMethod
- ContrastMethod to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelEmissionWavelength(Length emissionWavelength, int imageIndex, int channelIndex)
emissionWavelength
- EmissionWavelength to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelExcitationWavelength(Length excitationWavelength, int imageIndex, int channelIndex)
excitationWavelength
- ExcitationWavelength to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelFilterSetRef(String filterSet, int imageIndex, int channelIndex)
filterSet
- FilterSetRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelFluor(String fluor, int imageIndex, int channelIndex)
fluor
- Fluor to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelID(String id, int imageIndex, int channelIndex)
id
- ID to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelIlluminationType(IlluminationType illuminationType, int imageIndex, int channelIndex)
illuminationType
- IlluminationType to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelNDFilter(Double ndFilter, int imageIndex, int channelIndex)
ndFilter
- NDFilter to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelName(String name, int imageIndex, int channelIndex)
name
- Name to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelPinholeSize(Length pinholeSize, int imageIndex, int channelIndex)
pinholeSize
- PinholeSize to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelPockelCellSetting(Integer pockelCellSetting, int imageIndex, int channelIndex)
pockelCellSetting
- PockelCellSetting to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setChannelSamplesPerPixel(PositiveInteger samplesPerPixel, int imageIndex, int channelIndex)
samplesPerPixel
- SamplesPerPixel to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setCommentAnnotationAnnotationRef(String annotation, int commentAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.commentAnnotationIndex
- the CommentAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setCommentAnnotationAnnotator(String annotator, int commentAnnotationIndex)
annotator
- Annotator to set.commentAnnotationIndex
- the CommentAnnotation index.void setCommentAnnotationDescription(String description, int commentAnnotationIndex)
description
- Description to set.commentAnnotationIndex
- the CommentAnnotation index.void setCommentAnnotationID(String id, int commentAnnotationIndex)
id
- ID to set.commentAnnotationIndex
- the CommentAnnotation index.void setCommentAnnotationNamespace(String namespace, int commentAnnotationIndex)
namespace
- Namespace to set.commentAnnotationIndex
- the CommentAnnotation index.void setCommentAnnotationValue(String value, int commentAnnotationIndex)
value
- Value to set.commentAnnotationIndex
- the CommentAnnotation index.void setDatasetAnnotationRef(String annotation, int datasetIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.datasetIndex
- the Dataset index.annotationRefIndex
- AnnotationRef index (unused).void setDatasetDescription(String description, int datasetIndex)
description
- Description to set.datasetIndex
- the Dataset index.void setDatasetExperimenterGroupRef(String experimenterGroup, int datasetIndex)
experimenterGroup
- ExperimenterGroupRef to set.datasetIndex
- the Dataset index.void setDatasetExperimenterRef(String experimenter, int datasetIndex)
experimenter
- ExperimenterRef to set.datasetIndex
- the Dataset index.void setDatasetID(String id, int datasetIndex)
id
- ID to set.datasetIndex
- the Dataset index.void setDatasetImageRef(String image, int datasetIndex, int imageRefIndex)
image
- ImageRef to set.datasetIndex
- the Dataset index.imageRefIndex
- ImageRef index (unused).void setDatasetName(String name, int datasetIndex)
name
- Name to set.datasetIndex
- the Dataset index.void setDetectorAmplificationGain(Double amplificationGain, int instrumentIndex, int detectorIndex)
amplificationGain
- AmplificationGain to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorAnnotationRef(String annotation, int instrumentIndex, int detectorIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.annotationRefIndex
- AnnotationRef index (unused).void setDetectorGain(Double gain, int instrumentIndex, int detectorIndex)
gain
- Gain to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorID(String id, int instrumentIndex, int detectorIndex)
id
- ID to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorLotNumber(String lotNumber, int instrumentIndex, int detectorIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorManufacturer(String manufacturer, int instrumentIndex, int detectorIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorModel(String model, int instrumentIndex, int detectorIndex)
model
- Model to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorOffset(Double offset, int instrumentIndex, int detectorIndex)
offset
- Offset to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorSerialNumber(String serialNumber, int instrumentIndex, int detectorIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorType(DetectorType type, int instrumentIndex, int detectorIndex)
type
- Type to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorVoltage(ElectricPotential voltage, int instrumentIndex, int detectorIndex)
voltage
- Voltage to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorZoom(Double zoom, int instrumentIndex, int detectorIndex)
zoom
- Zoom to set.instrumentIndex
- the Instrument index.detectorIndex
- the Detector index.void setDetectorSettingsBinning(Binning binning, int imageIndex, int channelIndex)
binning
- Binning to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsGain(Double gain, int imageIndex, int channelIndex)
gain
- Gain to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsID(String id, int imageIndex, int channelIndex)
id
- ID to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsIntegration(PositiveInteger integration, int imageIndex, int channelIndex)
integration
- Integration to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsOffset(Double offset, int imageIndex, int channelIndex)
offset
- Offset to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsReadOutRate(Frequency readOutRate, int imageIndex, int channelIndex)
readOutRate
- ReadOutRate to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsVoltage(ElectricPotential voltage, int imageIndex, int channelIndex)
voltage
- Voltage to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDetectorSettingsZoom(Double zoom, int imageIndex, int channelIndex)
zoom
- Zoom to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setDichroicAnnotationRef(String annotation, int instrumentIndex, int dichroicIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.annotationRefIndex
- AnnotationRef index (unused).void setDichroicID(String id, int instrumentIndex, int dichroicIndex)
id
- ID to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.void setDichroicLotNumber(String lotNumber, int instrumentIndex, int dichroicIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.void setDichroicManufacturer(String manufacturer, int instrumentIndex, int dichroicIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.void setDichroicModel(String model, int instrumentIndex, int dichroicIndex)
model
- Model to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.void setDichroicSerialNumber(String serialNumber, int instrumentIndex, int dichroicIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.dichroicIndex
- the Dichroic index.void setDoubleAnnotationAnnotationRef(String annotation, int doubleAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.doubleAnnotationIndex
- the DoubleAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setDoubleAnnotationAnnotator(String annotator, int doubleAnnotationIndex)
annotator
- Annotator to set.doubleAnnotationIndex
- the DoubleAnnotation index.void setDoubleAnnotationDescription(String description, int doubleAnnotationIndex)
description
- Description to set.doubleAnnotationIndex
- the DoubleAnnotation index.void setDoubleAnnotationID(String id, int doubleAnnotationIndex)
id
- ID to set.doubleAnnotationIndex
- the DoubleAnnotation index.void setDoubleAnnotationNamespace(String namespace, int doubleAnnotationIndex)
namespace
- Namespace to set.doubleAnnotationIndex
- the DoubleAnnotation index.void setDoubleAnnotationValue(Double value, int doubleAnnotationIndex)
value
- Value to set.doubleAnnotationIndex
- the DoubleAnnotation index.void setEllipseAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setEllipseFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseRadiusX(Double radiusX, int ROIIndex, int shapeIndex)
radiusX
- RadiusX to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseRadiusY(Double radiusY, int ROIIndex, int shapeIndex)
radiusY
- RadiusY to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseX(Double x, int ROIIndex, int shapeIndex)
x
- X to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setEllipseY(Double y, int ROIIndex, int shapeIndex)
y
- Y to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setExperimentDescription(String description, int experimentIndex)
description
- Description to set.experimentIndex
- the Experiment index.void setExperimentExperimenterRef(String experimenter, int experimentIndex)
experimenter
- ExperimenterRef to set.experimentIndex
- the Experiment index.void setExperimentID(String id, int experimentIndex)
id
- ID to set.experimentIndex
- the Experiment index.void setExperimentType(ExperimentType type, int experimentIndex)
type
- Type to set.experimentIndex
- the Experiment index.void setExperimenterAnnotationRef(String annotation, int experimenterIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.experimenterIndex
- the Experimenter index.annotationRefIndex
- AnnotationRef index (unused).void setExperimenterEmail(String email, int experimenterIndex)
email
- Email to set.experimenterIndex
- the Experimenter index.void setExperimenterFirstName(String firstName, int experimenterIndex)
firstName
- FirstName to set.experimenterIndex
- the Experimenter index.void setExperimenterID(String id, int experimenterIndex)
id
- ID to set.experimenterIndex
- the Experimenter index.void setExperimenterInstitution(String institution, int experimenterIndex)
institution
- Institution to set.experimenterIndex
- the Experimenter index.void setExperimenterLastName(String lastName, int experimenterIndex)
lastName
- LastName to set.experimenterIndex
- the Experimenter index.void setExperimenterMiddleName(String middleName, int experimenterIndex)
middleName
- MiddleName to set.experimenterIndex
- the Experimenter index.void setExperimenterUserName(String userName, int experimenterIndex)
userName
- UserName to set.experimenterIndex
- the Experimenter index.void setExperimenterGroupAnnotationRef(String annotation, int experimenterGroupIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.experimenterGroupIndex
- the ExperimenterGroup index.annotationRefIndex
- AnnotationRef index (unused).void setExperimenterGroupDescription(String description, int experimenterGroupIndex)
description
- Description to set.experimenterGroupIndex
- the ExperimenterGroup index.void setExperimenterGroupExperimenterRef(String experimenter, int experimenterGroupIndex, int experimenterRefIndex)
experimenter
- ExperimenterRef to set.experimenterGroupIndex
- the ExperimenterGroup index.experimenterRefIndex
- ExperimenterRef index (unused).void setExperimenterGroupID(String id, int experimenterGroupIndex)
id
- ID to set.experimenterGroupIndex
- the ExperimenterGroup index.void setExperimenterGroupLeader(String leader, int experimenterGroupIndex, int leaderIndex)
leader
- Leader to set.experimenterGroupIndex
- the ExperimenterGroup index.leaderIndex
- Leader index (unused).void setExperimenterGroupName(String name, int experimenterGroupIndex)
name
- Name to set.experimenterGroupIndex
- the ExperimenterGroup index.void setFilamentAnnotationRef(String annotation, int instrumentIndex, int lightSourceIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.annotationRefIndex
- AnnotationRef index (unused).void setFilamentID(String id, int instrumentIndex, int lightSourceIndex)
id
- ID to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentModel(String model, int instrumentIndex, int lightSourceIndex)
model
- Model to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentPower(Power power, int instrumentIndex, int lightSourceIndex)
power
- Power to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFilamentType(FilamentType type, int instrumentIndex, int lightSourceIndex)
type
- Type to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setFileAnnotationAnnotationRef(String annotation, int fileAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.fileAnnotationIndex
- the FileAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setFileAnnotationAnnotator(String annotator, int fileAnnotationIndex)
annotator
- Annotator to set.fileAnnotationIndex
- the FileAnnotation index.void setFileAnnotationDescription(String description, int fileAnnotationIndex)
description
- Description to set.fileAnnotationIndex
- the FileAnnotation index.void setFileAnnotationID(String id, int fileAnnotationIndex)
id
- ID to set.fileAnnotationIndex
- the FileAnnotation index.void setFileAnnotationNamespace(String namespace, int fileAnnotationIndex)
namespace
- Namespace to set.fileAnnotationIndex
- the FileAnnotation index.void setFilterAnnotationRef(String annotation, int instrumentIndex, int filterIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.annotationRefIndex
- AnnotationRef index (unused).void setFilterFilterWheel(String filterWheel, int instrumentIndex, int filterIndex)
filterWheel
- FilterWheel to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterID(String id, int instrumentIndex, int filterIndex)
id
- ID to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterLotNumber(String lotNumber, int instrumentIndex, int filterIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterManufacturer(String manufacturer, int instrumentIndex, int filterIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterModel(String model, int instrumentIndex, int filterIndex)
model
- Model to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterSerialNumber(String serialNumber, int instrumentIndex, int filterIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterType(FilterType type, int instrumentIndex, int filterIndex)
type
- Type to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setFilterSetDichroicRef(String dichroic, int instrumentIndex, int filterSetIndex)
dichroic
- DichroicRef to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFilterSetEmissionFilterRef(String emissionFilter, int instrumentIndex, int filterSetIndex, int emissionFilterRefIndex)
emissionFilter
- EmissionFilterRef to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.emissionFilterRefIndex
- EmissionFilterRef index (unused).void setFilterSetExcitationFilterRef(String excitationFilter, int instrumentIndex, int filterSetIndex, int excitationFilterRefIndex)
excitationFilter
- ExcitationFilterRef to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.excitationFilterRefIndex
- ExcitationFilterRef index (unused).void setFilterSetID(String id, int instrumentIndex, int filterSetIndex)
id
- ID to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFilterSetLotNumber(String lotNumber, int instrumentIndex, int filterSetIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFilterSetManufacturer(String manufacturer, int instrumentIndex, int filterSetIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFilterSetModel(String model, int instrumentIndex, int filterSetIndex)
model
- Model to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFilterSetSerialNumber(String serialNumber, int instrumentIndex, int filterSetIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.filterSetIndex
- the FilterSet index.void setFolderAnnotationRef(String annotation, int folderIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.folderIndex
- the Folder index.annotationRefIndex
- AnnotationRef index (unused).void setFolderDescription(String description, int folderIndex)
description
- Description to set.folderIndex
- the Folder index.void setFolderFolderRef(String folder, int folderIndex, int folderRefIndex)
folder
- FolderRef to set.folderIndex
- the Folder index.folderRefIndex
- FolderRef index (unused).void setFolderID(String id, int folderIndex)
id
- ID to set.folderIndex
- the Folder index.void setFolderImageRef(String image, int folderIndex, int imageRefIndex)
image
- ImageRef to set.folderIndex
- the Folder index.imageRefIndex
- ImageRef index (unused).void setFolderName(String name, int folderIndex)
name
- Name to set.folderIndex
- the Folder index.void setFolderROIRef(String roi, int folderIndex, int ROIRefIndex)
roi
- ROIRef to set.folderIndex
- the Folder index.ROIRefIndex
- ROIRef index (unused).void setGenericExcitationSourceAnnotationRef(String annotation, int instrumentIndex, int lightSourceIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.annotationRefIndex
- AnnotationRef index (unused).void setGenericExcitationSourceID(String id, int instrumentIndex, int lightSourceIndex)
id
- ID to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setGenericExcitationSourceLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setGenericExcitationSourceManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setGenericExcitationSourceModel(String model, int instrumentIndex, int lightSourceIndex)
model
- Model to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setGenericExcitationSourcePower(Power power, int instrumentIndex, int lightSourceIndex)
power
- Power to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setGenericExcitationSourceSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setImageAcquisitionDate(Timestamp acquisitionDate, int imageIndex)
acquisitionDate
- AcquisitionDate to set.imageIndex
- the Image index.void setImageAnnotationRef(String annotation, int imageIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.imageIndex
- the Image index.annotationRefIndex
- AnnotationRef index (unused).void setImageDescription(String description, int imageIndex)
description
- Description to set.imageIndex
- the Image index.void setImageExperimentRef(String experiment, int imageIndex)
experiment
- ExperimentRef to set.imageIndex
- the Image index.void setImageExperimenterGroupRef(String experimenterGroup, int imageIndex)
experimenterGroup
- ExperimenterGroupRef to set.imageIndex
- the Image index.void setImageExperimenterRef(String experimenter, int imageIndex)
experimenter
- ExperimenterRef to set.imageIndex
- the Image index.void setImageID(String id, int imageIndex)
id
- ID to set.imageIndex
- the Image index.void setImageInstrumentRef(String instrument, int imageIndex)
instrument
- InstrumentRef to set.imageIndex
- the Image index.void setImageMicrobeamManipulationRef(String microbeamManipulation, int imageIndex, int microbeamManipulationRefIndex)
microbeamManipulation
- MicrobeamManipulationRef to set.imageIndex
- the Image index.microbeamManipulationRefIndex
- MicrobeamManipulationRef index (unused).void setImageName(String name, int imageIndex)
name
- Name to set.imageIndex
- the Image index.void setImageROIRef(String roi, int imageIndex, int ROIRefIndex)
roi
- ROIRef to set.imageIndex
- the Image index.ROIRefIndex
- ROIRef index (unused).void setImagingEnvironmentAirPressure(Pressure airPressure, int imageIndex)
airPressure
- AirPressure to set.imageIndex
- the Image index.void setImagingEnvironmentCO2Percent(PercentFraction co2Percent, int imageIndex)
co2Percent
- CO2Percent to set.imageIndex
- the Image index.void setImagingEnvironmentHumidity(PercentFraction humidity, int imageIndex)
humidity
- Humidity to set.imageIndex
- the Image index.void setImagingEnvironmentTemperature(Temperature temperature, int imageIndex)
temperature
- Temperature to set.imageIndex
- the Image index.void setInstrumentAnnotationRef(String annotation, int instrumentIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.annotationRefIndex
- AnnotationRef index (unused).void setInstrumentID(String id, int instrumentIndex)
id
- ID to set.instrumentIndex
- the Instrument index.void setLabelAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setLabelFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelX(Double x, int ROIIndex, int shapeIndex)
x
- X to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLabelY(Double y, int ROIIndex, int shapeIndex)
y
- Y to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLaserAnnotationRef(String annotation, int instrumentIndex, int lightSourceIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.annotationRefIndex
- AnnotationRef index (unused).void setLaserFrequencyMultiplication(PositiveInteger frequencyMultiplication, int instrumentIndex, int lightSourceIndex)
frequencyMultiplication
- FrequencyMultiplication to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserID(String id, int instrumentIndex, int lightSourceIndex)
id
- ID to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserLaserMedium(LaserMedium laserMedium, int instrumentIndex, int lightSourceIndex)
laserMedium
- LaserMedium to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserModel(String model, int instrumentIndex, int lightSourceIndex)
model
- Model to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserPockelCell(Boolean pockelCell, int instrumentIndex, int lightSourceIndex)
pockelCell
- PockelCell to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserPower(Power power, int instrumentIndex, int lightSourceIndex)
power
- Power to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserPulse(Pulse pulse, int instrumentIndex, int lightSourceIndex)
pulse
- Pulse to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserPump(String pump, int instrumentIndex, int lightSourceIndex)
pump
- Pump to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserRepetitionRate(Frequency repetitionRate, int instrumentIndex, int lightSourceIndex)
repetitionRate
- RepetitionRate to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserTuneable(Boolean tuneable, int instrumentIndex, int lightSourceIndex)
tuneable
- Tuneable to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserType(LaserType type, int instrumentIndex, int lightSourceIndex)
type
- Type to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLaserWavelength(Length wavelength, int instrumentIndex, int lightSourceIndex)
wavelength
- Wavelength to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodeAnnotationRef(String annotation, int instrumentIndex, int lightSourceIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.annotationRefIndex
- AnnotationRef index (unused).void setLightEmittingDiodeID(String id, int instrumentIndex, int lightSourceIndex)
id
- ID to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodeLotNumber(String lotNumber, int instrumentIndex, int lightSourceIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodeManufacturer(String manufacturer, int instrumentIndex, int lightSourceIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodeModel(String model, int instrumentIndex, int lightSourceIndex)
model
- Model to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodePower(Power power, int instrumentIndex, int lightSourceIndex)
power
- Power to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightEmittingDiodeSerialNumber(String serialNumber, int instrumentIndex, int lightSourceIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.lightSourceIndex
- the LightSource index.void setLightPathAnnotationRef(String annotation, int imageIndex, int channelIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.annotationRefIndex
- AnnotationRef index (unused).void setLightPathDichroicRef(String dichroic, int imageIndex, int channelIndex)
dichroic
- DichroicRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setLightPathEmissionFilterRef(String emissionFilter, int imageIndex, int channelIndex, int emissionFilterRefIndex)
emissionFilter
- EmissionFilterRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.emissionFilterRefIndex
- EmissionFilterRef index (unused).void setLightPathExcitationFilterRef(String excitationFilter, int imageIndex, int channelIndex, int excitationFilterRefIndex)
excitationFilter
- ExcitationFilterRef to set.imageIndex
- the Image index.channelIndex
- the Channel index.excitationFilterRefIndex
- ExcitationFilterRef index (unused).void setChannelLightSourceSettingsAttenuation(PercentFraction attenuation, int imageIndex, int channelIndex)
attenuation
- Attenuation to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setMicrobeamManipulationLightSourceSettingsAttenuation(PercentFraction attenuation, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
attenuation
- Attenuation to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.lightSourceSettingsIndex
- the LightSourceSettings index.void setChannelLightSourceSettingsID(String id, int imageIndex, int channelIndex)
id
- ID to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setMicrobeamManipulationLightSourceSettingsID(String id, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
id
- ID to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.lightSourceSettingsIndex
- the LightSourceSettings index.void setChannelLightSourceSettingsWavelength(Length wavelength, int imageIndex, int channelIndex)
wavelength
- Wavelength to set.imageIndex
- the Image index.channelIndex
- the Channel index.void setMicrobeamManipulationLightSourceSettingsWavelength(Length wavelength, int experimentIndex, int microbeamManipulationIndex, int lightSourceSettingsIndex)
wavelength
- Wavelength to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.lightSourceSettingsIndex
- the LightSourceSettings index.void setLineAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setLineFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineMarkerEnd(Marker markerEnd, int ROIIndex, int shapeIndex)
markerEnd
- MarkerEnd to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineMarkerStart(Marker markerStart, int ROIIndex, int shapeIndex)
markerStart
- MarkerStart to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineX1(Double x1, int ROIIndex, int shapeIndex)
x1
- X1 to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineX2(Double x2, int ROIIndex, int shapeIndex)
x2
- X2 to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineY1(Double y1, int ROIIndex, int shapeIndex)
y1
- Y1 to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setLineY2(Double y2, int ROIIndex, int shapeIndex)
y2
- Y2 to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setListAnnotationAnnotationRef(String annotation, int listAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.listAnnotationIndex
- the ListAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setListAnnotationAnnotator(String annotator, int listAnnotationIndex)
annotator
- Annotator to set.listAnnotationIndex
- the ListAnnotation index.void setListAnnotationDescription(String description, int listAnnotationIndex)
description
- Description to set.listAnnotationIndex
- the ListAnnotation index.void setListAnnotationID(String id, int listAnnotationIndex)
id
- ID to set.listAnnotationIndex
- the ListAnnotation index.void setListAnnotationNamespace(String namespace, int listAnnotationIndex)
namespace
- Namespace to set.listAnnotationIndex
- the ListAnnotation index.void setLongAnnotationAnnotationRef(String annotation, int longAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.longAnnotationIndex
- the LongAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setLongAnnotationAnnotator(String annotator, int longAnnotationIndex)
annotator
- Annotator to set.longAnnotationIndex
- the LongAnnotation index.void setLongAnnotationDescription(String description, int longAnnotationIndex)
description
- Description to set.longAnnotationIndex
- the LongAnnotation index.void setLongAnnotationID(String id, int longAnnotationIndex)
id
- ID to set.longAnnotationIndex
- the LongAnnotation index.void setLongAnnotationNamespace(String namespace, int longAnnotationIndex)
namespace
- Namespace to set.longAnnotationIndex
- the LongAnnotation index.void setLongAnnotationValue(Long value, int longAnnotationIndex)
value
- Value to set.longAnnotationIndex
- the LongAnnotation index.void setMapAnnotationAnnotationRef(String annotation, int mapAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.mapAnnotationIndex
- the MapAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setMapAnnotationAnnotator(String annotator, int mapAnnotationIndex)
annotator
- Annotator to set.mapAnnotationIndex
- the MapAnnotation index.void setMapAnnotationDescription(String description, int mapAnnotationIndex)
description
- Description to set.mapAnnotationIndex
- the MapAnnotation index.void setMapAnnotationID(String id, int mapAnnotationIndex)
id
- ID to set.mapAnnotationIndex
- the MapAnnotation index.void setMapAnnotationNamespace(String namespace, int mapAnnotationIndex)
namespace
- Namespace to set.mapAnnotationIndex
- the MapAnnotation index.void setMaskAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setMaskFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskHeight(Double height, int ROIIndex, int shapeIndex)
height
- Height to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskWidth(Double width, int ROIIndex, int shapeIndex)
width
- Width to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskX(Double x, int ROIIndex, int shapeIndex)
x
- X to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMaskY(Double y, int ROIIndex, int shapeIndex)
y
- Y to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setMicrobeamManipulationDescription(String description, int experimentIndex, int microbeamManipulationIndex)
description
- Description to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.void setMicrobeamManipulationExperimenterRef(String experimenter, int experimentIndex, int microbeamManipulationIndex)
experimenter
- ExperimenterRef to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.void setMicrobeamManipulationID(String id, int experimentIndex, int microbeamManipulationIndex)
id
- ID to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.void setMicrobeamManipulationROIRef(String roi, int experimentIndex, int microbeamManipulationIndex, int ROIRefIndex)
roi
- ROIRef to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.ROIRefIndex
- ROIRef index (unused).void setMicrobeamManipulationType(MicrobeamManipulationType type, int experimentIndex, int microbeamManipulationIndex)
type
- Type to set.experimentIndex
- the Experiment index.microbeamManipulationIndex
- the MicrobeamManipulation index.void setMicroscopeLotNumber(String lotNumber, int instrumentIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.void setMicroscopeManufacturer(String manufacturer, int instrumentIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.void setMicroscopeModel(String model, int instrumentIndex)
model
- Model to set.instrumentIndex
- the Instrument index.void setMicroscopeSerialNumber(String serialNumber, int instrumentIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.void setMicroscopeType(MicroscopeType type, int instrumentIndex)
type
- Type to set.instrumentIndex
- the Instrument index.void setObjectiveAnnotationRef(String annotation, int instrumentIndex, int objectiveIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.annotationRefIndex
- AnnotationRef index (unused).void setObjectiveCalibratedMagnification(Double calibratedMagnification, int instrumentIndex, int objectiveIndex)
calibratedMagnification
- CalibratedMagnification to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveCorrection(Correction correction, int instrumentIndex, int objectiveIndex)
correction
- Correction to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveID(String id, int instrumentIndex, int objectiveIndex)
id
- ID to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveImmersion(Immersion immersion, int instrumentIndex, int objectiveIndex)
immersion
- Immersion to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveIris(Boolean iris, int instrumentIndex, int objectiveIndex)
iris
- Iris to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveLensNA(Double lensNA, int instrumentIndex, int objectiveIndex)
lensNA
- LensNA to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveLotNumber(String lotNumber, int instrumentIndex, int objectiveIndex)
lotNumber
- LotNumber to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveManufacturer(String manufacturer, int instrumentIndex, int objectiveIndex)
manufacturer
- Manufacturer to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveModel(String model, int instrumentIndex, int objectiveIndex)
model
- Model to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveNominalMagnification(Double nominalMagnification, int instrumentIndex, int objectiveIndex)
nominalMagnification
- NominalMagnification to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveSerialNumber(String serialNumber, int instrumentIndex, int objectiveIndex)
serialNumber
- SerialNumber to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveWorkingDistance(Length workingDistance, int instrumentIndex, int objectiveIndex)
workingDistance
- WorkingDistance to set.instrumentIndex
- the Instrument index.objectiveIndex
- the Objective index.void setObjectiveSettingsCorrectionCollar(Double correctionCollar, int imageIndex)
correctionCollar
- CorrectionCollar to set.imageIndex
- the Image index.void setObjectiveSettingsID(String id, int imageIndex)
id
- ID to set.imageIndex
- the Image index.void setObjectiveSettingsMedium(Medium medium, int imageIndex)
medium
- Medium to set.imageIndex
- the Image index.void setObjectiveSettingsRefractiveIndex(Double refractiveIndex, int imageIndex)
refractiveIndex
- RefractiveIndex to set.imageIndex
- the Image index.void setPixelsBigEndian(Boolean bigEndian, int imageIndex)
bigEndian
- BigEndian to set.imageIndex
- the Image index.void setPixelsDimensionOrder(DimensionOrder dimensionOrder, int imageIndex)
dimensionOrder
- DimensionOrder to set.imageIndex
- the Image index.void setPixelsID(String id, int imageIndex)
id
- ID to set.imageIndex
- the Image index.void setPixelsInterleaved(Boolean interleaved, int imageIndex)
interleaved
- Interleaved to set.imageIndex
- the Image index.void setPixelsPhysicalSizeX(Length physicalSizeX, int imageIndex)
physicalSizeX
- PhysicalSizeX to set.imageIndex
- the Image index.void setPixelsPhysicalSizeY(Length physicalSizeY, int imageIndex)
physicalSizeY
- PhysicalSizeY to set.imageIndex
- the Image index.void setPixelsPhysicalSizeZ(Length physicalSizeZ, int imageIndex)
physicalSizeZ
- PhysicalSizeZ to set.imageIndex
- the Image index.void setPixelsSignificantBits(PositiveInteger significantBits, int imageIndex)
significantBits
- SignificantBits to set.imageIndex
- the Image index.void setPixelsSizeC(PositiveInteger sizeC, int imageIndex)
sizeC
- SizeC to set.imageIndex
- the Image index.void setPixelsSizeT(PositiveInteger sizeT, int imageIndex)
sizeT
- SizeT to set.imageIndex
- the Image index.void setPixelsSizeX(PositiveInteger sizeX, int imageIndex)
sizeX
- SizeX to set.imageIndex
- the Image index.void setPixelsSizeY(PositiveInteger sizeY, int imageIndex)
sizeY
- SizeY to set.imageIndex
- the Image index.void setPixelsSizeZ(PositiveInteger sizeZ, int imageIndex)
sizeZ
- SizeZ to set.imageIndex
- the Image index.void setPixelsTimeIncrement(Time timeIncrement, int imageIndex)
timeIncrement
- TimeIncrement to set.imageIndex
- the Image index.void setPixelsType(PixelType type, int imageIndex)
type
- Type to set.imageIndex
- the Image index.void setPlaneAnnotationRef(String annotation, int imageIndex, int planeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.imageIndex
- the Image index.planeIndex
- the Plane index.annotationRefIndex
- AnnotationRef index (unused).void setPlaneDeltaT(Time deltaT, int imageIndex, int planeIndex)
deltaT
- DeltaT to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlaneExposureTime(Time exposureTime, int imageIndex, int planeIndex)
exposureTime
- ExposureTime to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlaneHashSHA1(String hashSHA1, int imageIndex, int planeIndex)
hashSHA1
- HashSHA1 to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlanePositionX(Length positionX, int imageIndex, int planeIndex)
positionX
- PositionX to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlanePositionY(Length positionY, int imageIndex, int planeIndex)
positionY
- PositionY to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlanePositionZ(Length positionZ, int imageIndex, int planeIndex)
positionZ
- PositionZ to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlaneTheC(NonNegativeInteger theC, int imageIndex, int planeIndex)
theC
- TheC to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlaneTheT(NonNegativeInteger theT, int imageIndex, int planeIndex)
theT
- TheT to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlaneTheZ(NonNegativeInteger theZ, int imageIndex, int planeIndex)
theZ
- TheZ to set.imageIndex
- the Image index.planeIndex
- the Plane index.void setPlateAnnotationRef(String annotation, int plateIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.plateIndex
- the Plate index.annotationRefIndex
- AnnotationRef index (unused).void setPlateColumnNamingConvention(NamingConvention columnNamingConvention, int plateIndex)
columnNamingConvention
- ColumnNamingConvention to set.plateIndex
- the Plate index.void setPlateColumns(PositiveInteger columns, int plateIndex)
columns
- Columns to set.plateIndex
- the Plate index.void setPlateDescription(String description, int plateIndex)
description
- Description to set.plateIndex
- the Plate index.void setPlateExternalIdentifier(String externalIdentifier, int plateIndex)
externalIdentifier
- ExternalIdentifier to set.plateIndex
- the Plate index.void setPlateFieldIndex(NonNegativeInteger fieldIndex, int plateIndex)
fieldIndex
- FieldIndex to set.plateIndex
- the Plate index.void setPlateID(String id, int plateIndex)
id
- ID to set.plateIndex
- the Plate index.void setPlateName(String name, int plateIndex)
name
- Name to set.plateIndex
- the Plate index.void setPlateRowNamingConvention(NamingConvention rowNamingConvention, int plateIndex)
rowNamingConvention
- RowNamingConvention to set.plateIndex
- the Plate index.void setPlateRows(PositiveInteger rows, int plateIndex)
rows
- Rows to set.plateIndex
- the Plate index.void setPlateStatus(String status, int plateIndex)
status
- Status to set.plateIndex
- the Plate index.void setPlateWellOriginX(Length wellOriginX, int plateIndex)
wellOriginX
- WellOriginX to set.plateIndex
- the Plate index.void setPlateWellOriginY(Length wellOriginY, int plateIndex)
wellOriginY
- WellOriginY to set.plateIndex
- the Plate index.void setPlateAcquisitionAnnotationRef(String annotation, int plateIndex, int plateAcquisitionIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.annotationRefIndex
- AnnotationRef index (unused).void setPlateAcquisitionDescription(String description, int plateIndex, int plateAcquisitionIndex)
description
- Description to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionEndTime(Timestamp endTime, int plateIndex, int plateAcquisitionIndex)
endTime
- EndTime to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionID(String id, int plateIndex, int plateAcquisitionIndex)
id
- ID to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionMaximumFieldCount(PositiveInteger maximumFieldCount, int plateIndex, int plateAcquisitionIndex)
maximumFieldCount
- MaximumFieldCount to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionName(String name, int plateIndex, int plateAcquisitionIndex)
name
- Name to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionStartTime(Timestamp startTime, int plateIndex, int plateAcquisitionIndex)
startTime
- StartTime to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.void setPlateAcquisitionWellSampleRef(String wellSample, int plateIndex, int plateAcquisitionIndex, int wellSampleRefIndex)
wellSample
- WellSampleRef to set.plateIndex
- the Plate index.plateAcquisitionIndex
- the PlateAcquisition index.wellSampleRefIndex
- WellSampleRef index (unused).void setPointAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setPointFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointX(Double x, int ROIIndex, int shapeIndex)
x
- X to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPointY(Double y, int ROIIndex, int shapeIndex)
y
- Y to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setPolygonFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonPoints(String points, int ROIIndex, int shapeIndex)
points
- Points to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolygonTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setPolylineFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineMarkerEnd(Marker markerEnd, int ROIIndex, int shapeIndex)
markerEnd
- MarkerEnd to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineMarkerStart(Marker markerStart, int ROIIndex, int shapeIndex)
markerStart
- MarkerStart to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylinePoints(String points, int ROIIndex, int shapeIndex)
points
- Points to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setPolylineTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setProjectAnnotationRef(String annotation, int projectIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.projectIndex
- the Project index.annotationRefIndex
- AnnotationRef index (unused).void setProjectDatasetRef(String dataset, int projectIndex, int datasetRefIndex)
dataset
- DatasetRef to set.projectIndex
- the Project index.datasetRefIndex
- DatasetRef index (unused).void setProjectDescription(String description, int projectIndex)
description
- Description to set.projectIndex
- the Project index.void setProjectExperimenterGroupRef(String experimenterGroup, int projectIndex)
experimenterGroup
- ExperimenterGroupRef to set.projectIndex
- the Project index.void setProjectExperimenterRef(String experimenter, int projectIndex)
experimenter
- ExperimenterRef to set.projectIndex
- the Project index.void setProjectID(String id, int projectIndex)
id
- ID to set.projectIndex
- the Project index.void setProjectName(String name, int projectIndex)
name
- Name to set.projectIndex
- the Project index.void setROIAnnotationRef(String annotation, int ROIIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.annotationRefIndex
- AnnotationRef index (unused).void setROIDescription(String description, int ROIIndex)
description
- Description to set.ROIIndex
- the ROI index.void setROIID(String id, int ROIIndex)
id
- ID to set.ROIIndex
- the ROI index.void setROIName(String name, int ROIIndex)
name
- Name to set.ROIIndex
- the ROI index.void setReagentAnnotationRef(String annotation, int screenIndex, int reagentIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.screenIndex
- the Screen index.reagentIndex
- the Reagent index.annotationRefIndex
- AnnotationRef index (unused).void setReagentDescription(String description, int screenIndex, int reagentIndex)
description
- Description to set.screenIndex
- the Screen index.reagentIndex
- the Reagent index.void setReagentID(String id, int screenIndex, int reagentIndex)
id
- ID to set.screenIndex
- the Screen index.reagentIndex
- the Reagent index.void setReagentName(String name, int screenIndex, int reagentIndex)
name
- Name to set.screenIndex
- the Screen index.reagentIndex
- the Reagent index.void setReagentReagentIdentifier(String reagentIdentifier, int screenIndex, int reagentIndex)
reagentIdentifier
- ReagentIdentifier to set.screenIndex
- the Screen index.reagentIndex
- the Reagent index.void setRectangleAnnotationRef(String annotation, int ROIIndex, int shapeIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.annotationRefIndex
- AnnotationRef index (unused).void setRectangleFillColor(Color fillColor, int ROIIndex, int shapeIndex)
fillColor
- FillColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleFillRule(FillRule fillRule, int ROIIndex, int shapeIndex)
fillRule
- FillRule to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleFontFamily(FontFamily fontFamily, int ROIIndex, int shapeIndex)
fontFamily
- FontFamily to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleFontSize(Length fontSize, int ROIIndex, int shapeIndex)
fontSize
- FontSize to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleFontStyle(FontStyle fontStyle, int ROIIndex, int shapeIndex)
fontStyle
- FontStyle to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleHeight(Double height, int ROIIndex, int shapeIndex)
height
- Height to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleID(String id, int ROIIndex, int shapeIndex)
id
- ID to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleLocked(Boolean locked, int ROIIndex, int shapeIndex)
locked
- Locked to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleStrokeColor(Color strokeColor, int ROIIndex, int shapeIndex)
strokeColor
- StrokeColor to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleStrokeDashArray(String strokeDashArray, int ROIIndex, int shapeIndex)
strokeDashArray
- StrokeDashArray to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleStrokeWidth(Length strokeWidth, int ROIIndex, int shapeIndex)
strokeWidth
- StrokeWidth to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleText(String text, int ROIIndex, int shapeIndex)
text
- Text to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleTheC(NonNegativeInteger theC, int ROIIndex, int shapeIndex)
theC
- TheC to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleTheT(NonNegativeInteger theT, int ROIIndex, int shapeIndex)
theT
- TheT to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleTheZ(NonNegativeInteger theZ, int ROIIndex, int shapeIndex)
theZ
- TheZ to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleTransform(AffineTransform transform, int ROIIndex, int shapeIndex)
transform
- Transform to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleWidth(Double width, int ROIIndex, int shapeIndex)
width
- Width to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleX(Double x, int ROIIndex, int shapeIndex)
x
- X to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRectangleY(Double y, int ROIIndex, int shapeIndex)
y
- Y to set.ROIIndex
- the ROI index.shapeIndex
- the Shape index.void setRightsRightsHeld(String rightsHeld)
rightsHeld
- RightsHeld to set.void setRightsRightsHolder(String rightsHolder)
rightsHolder
- RightsHolder to set.void setScreenAnnotationRef(String annotation, int screenIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.screenIndex
- the Screen index.annotationRefIndex
- AnnotationRef index (unused).void setScreenDescription(String description, int screenIndex)
description
- Description to set.screenIndex
- the Screen index.void setScreenID(String id, int screenIndex)
id
- ID to set.screenIndex
- the Screen index.void setScreenName(String name, int screenIndex)
name
- Name to set.screenIndex
- the Screen index.void setScreenPlateRef(String plate, int screenIndex, int plateRefIndex)
plate
- PlateRef to set.screenIndex
- the Screen index.plateRefIndex
- PlateRef index (unused).void setScreenProtocolDescription(String protocolDescription, int screenIndex)
protocolDescription
- ProtocolDescription to set.screenIndex
- the Screen index.void setScreenProtocolIdentifier(String protocolIdentifier, int screenIndex)
protocolIdentifier
- ProtocolIdentifier to set.screenIndex
- the Screen index.void setScreenReagentSetDescription(String reagentSetDescription, int screenIndex)
reagentSetDescription
- ReagentSetDescription to set.screenIndex
- the Screen index.void setScreenReagentSetIdentifier(String reagentSetIdentifier, int screenIndex)
reagentSetIdentifier
- ReagentSetIdentifier to set.screenIndex
- the Screen index.void setScreenType(String type, int screenIndex)
type
- Type to set.screenIndex
- the Screen index.void setStageLabelName(String name, int imageIndex)
name
- Name to set.imageIndex
- the Image index.void setStageLabelX(Length x, int imageIndex)
x
- X to set.imageIndex
- the Image index.void setStageLabelY(Length y, int imageIndex)
y
- Y to set.imageIndex
- the Image index.void setStageLabelZ(Length z, int imageIndex)
z
- Z to set.imageIndex
- the Image index.void setTagAnnotationAnnotationRef(String annotation, int tagAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.tagAnnotationIndex
- the TagAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setTagAnnotationAnnotator(String annotator, int tagAnnotationIndex)
annotator
- Annotator to set.tagAnnotationIndex
- the TagAnnotation index.void setTagAnnotationDescription(String description, int tagAnnotationIndex)
description
- Description to set.tagAnnotationIndex
- the TagAnnotation index.void setTagAnnotationID(String id, int tagAnnotationIndex)
id
- ID to set.tagAnnotationIndex
- the TagAnnotation index.void setTagAnnotationNamespace(String namespace, int tagAnnotationIndex)
namespace
- Namespace to set.tagAnnotationIndex
- the TagAnnotation index.void setTagAnnotationValue(String value, int tagAnnotationIndex)
value
- Value to set.tagAnnotationIndex
- the TagAnnotation index.void setTermAnnotationAnnotationRef(String annotation, int termAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.termAnnotationIndex
- the TermAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setTermAnnotationAnnotator(String annotator, int termAnnotationIndex)
annotator
- Annotator to set.termAnnotationIndex
- the TermAnnotation index.void setTermAnnotationDescription(String description, int termAnnotationIndex)
description
- Description to set.termAnnotationIndex
- the TermAnnotation index.void setTermAnnotationID(String id, int termAnnotationIndex)
id
- ID to set.termAnnotationIndex
- the TermAnnotation index.void setTermAnnotationNamespace(String namespace, int termAnnotationIndex)
namespace
- Namespace to set.termAnnotationIndex
- the TermAnnotation index.void setTermAnnotationValue(String value, int termAnnotationIndex)
value
- Value to set.termAnnotationIndex
- the TermAnnotation index.void setTiffDataFirstC(NonNegativeInteger firstC, int imageIndex, int tiffDataIndex)
firstC
- FirstC to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setTiffDataFirstT(NonNegativeInteger firstT, int imageIndex, int tiffDataIndex)
firstT
- FirstT to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setTiffDataFirstZ(NonNegativeInteger firstZ, int imageIndex, int tiffDataIndex)
firstZ
- FirstZ to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setTiffDataIFD(NonNegativeInteger ifd, int imageIndex, int tiffDataIndex)
ifd
- IFD to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setTiffDataPlaneCount(NonNegativeInteger planeCount, int imageIndex, int tiffDataIndex)
planeCount
- PlaneCount to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setTimestampAnnotationAnnotationRef(String annotation, int timestampAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.timestampAnnotationIndex
- the TimestampAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setTimestampAnnotationAnnotator(String annotator, int timestampAnnotationIndex)
annotator
- Annotator to set.timestampAnnotationIndex
- the TimestampAnnotation index.void setTimestampAnnotationDescription(String description, int timestampAnnotationIndex)
description
- Description to set.timestampAnnotationIndex
- the TimestampAnnotation index.void setTimestampAnnotationID(String id, int timestampAnnotationIndex)
id
- ID to set.timestampAnnotationIndex
- the TimestampAnnotation index.void setTimestampAnnotationNamespace(String namespace, int timestampAnnotationIndex)
namespace
- Namespace to set.timestampAnnotationIndex
- the TimestampAnnotation index.void setTimestampAnnotationValue(Timestamp value, int timestampAnnotationIndex)
value
- Value to set.timestampAnnotationIndex
- the TimestampAnnotation index.void setTransmittanceRangeCutIn(Length cutIn, int instrumentIndex, int filterIndex)
cutIn
- CutIn to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setTransmittanceRangeCutInTolerance(Length cutInTolerance, int instrumentIndex, int filterIndex)
cutInTolerance
- CutInTolerance to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setTransmittanceRangeCutOut(Length cutOut, int instrumentIndex, int filterIndex)
cutOut
- CutOut to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setTransmittanceRangeCutOutTolerance(Length cutOutTolerance, int instrumentIndex, int filterIndex)
cutOutTolerance
- CutOutTolerance to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setTransmittanceRangeTransmittance(PercentFraction transmittance, int instrumentIndex, int filterIndex)
transmittance
- Transmittance to set.instrumentIndex
- the Instrument index.filterIndex
- the Filter index.void setUUIDValue(String value, int imageIndex, int tiffDataIndex)
value
- text value.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setUUIDFileName(String fileName, int imageIndex, int tiffDataIndex)
fileName
- FileName to set.imageIndex
- the Image index.tiffDataIndex
- the TiffData index.void setWellAnnotationRef(String annotation, int plateIndex, int wellIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.plateIndex
- the Plate index.wellIndex
- the Well index.annotationRefIndex
- AnnotationRef index (unused).void setWellColor(Color color, int plateIndex, int wellIndex)
color
- Color to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellColumn(NonNegativeInteger column, int plateIndex, int wellIndex)
column
- Column to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellExternalDescription(String externalDescription, int plateIndex, int wellIndex)
externalDescription
- ExternalDescription to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellExternalIdentifier(String externalIdentifier, int plateIndex, int wellIndex)
externalIdentifier
- ExternalIdentifier to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellID(String id, int plateIndex, int wellIndex)
id
- ID to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellReagentRef(String reagent, int plateIndex, int wellIndex)
reagent
- ReagentRef to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellRow(NonNegativeInteger row, int plateIndex, int wellIndex)
row
- Row to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellType(String type, int plateIndex, int wellIndex)
type
- Type to set.plateIndex
- the Plate index.wellIndex
- the Well index.void setWellSampleID(String id, int plateIndex, int wellIndex, int wellSampleIndex)
id
- ID to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setWellSampleImageRef(String image, int plateIndex, int wellIndex, int wellSampleIndex)
image
- ImageRef to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setWellSampleIndex(NonNegativeInteger index, int plateIndex, int wellIndex, int wellSampleIndex)
index
- Index to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setWellSamplePositionX(Length positionX, int plateIndex, int wellIndex, int wellSampleIndex)
positionX
- PositionX to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setWellSamplePositionY(Length positionY, int plateIndex, int wellIndex, int wellSampleIndex)
positionY
- PositionY to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setWellSampleTimepoint(Timestamp timepoint, int plateIndex, int wellIndex, int wellSampleIndex)
timepoint
- Timepoint to set.plateIndex
- the Plate index.wellIndex
- the Well index.wellSampleIndex
- the WellSample index.void setXMLAnnotationAnnotationRef(String annotation, int XMLAnnotationIndex, int annotationRefIndex)
annotation
- AnnotationRef to set.XMLAnnotationIndex
- the XMLAnnotation index.annotationRefIndex
- AnnotationRef index (unused).void setXMLAnnotationAnnotator(String annotator, int XMLAnnotationIndex)
annotator
- Annotator to set.XMLAnnotationIndex
- the XMLAnnotation index.void setXMLAnnotationDescription(String description, int XMLAnnotationIndex)
description
- Description to set.XMLAnnotationIndex
- the XMLAnnotation index.void setXMLAnnotationID(String id, int XMLAnnotationIndex)
id
- ID to set.XMLAnnotationIndex
- the XMLAnnotation index.void setXMLAnnotationNamespace(String namespace, int XMLAnnotationIndex)
namespace
- Namespace to set.XMLAnnotationIndex
- the XMLAnnotation index.void setXMLAnnotationValue(String value, int XMLAnnotationIndex)
value
- Value to set.XMLAnnotationIndex
- the XMLAnnotation index.Copyright © 2016 Open Microscopy Environment