Package omero.gateway.model
Class PlateAcquisitionData
- java.lang.Object
-
- omero.gateway.model.DataObject
-
- omero.gateway.model.PlateAcquisitionData
-
public class PlateAcquisitionData extends DataObject
The data that makes up an OME PlateAcquisition.- Since:
- 3.0-Beta4
-
-
Constructor Summary
Constructors Constructor Description PlateAcquisitionData()
Creates a new instance.PlateAcquisitionData(omero.model.PlateAcquisition value)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.Long,java.lang.Long>
getAnnotationsCounts()
Returns the number of annotations linked to the object, key: id of the user, value: number of annotation.java.lang.String
getDescription()
Returns the description of the plate acquisition.java.sql.Timestamp
getEndTime()
Returns the time when the last image was collected.java.lang.String
getLabel()
Returns the label associated to the plate acquisition.int
getMaximumFieldCount()
Returns the maximum number of fields in any well.java.lang.String
getName()
Returns the name of the plate acquisition.long
getRefPlateId()
Returns the id of the plate of reference.java.sql.Timestamp
getStartTime()
Returns the time when the first image was collected.void
setDescription(java.lang.String description)
Sets the name of the acquisition.void
setName(java.lang.String name)
Sets the name of the acquisition.void
setRefPlateId(long refPlateId)
Sets the id of the plate this plate acquisition is for.-
Methods inherited from class omero.gateway.model.DataObject
asAnnotation, asChannel, asDataset, asExperimenter, asFolder, asGroup, asIAnnotated, asImage, asIObject, asPixels, asPlaneInfo, asPlate, asPojo, asPojos, asPojos, asProject, asScreen, asWell, asWellSample, canAnnotate, canChgrp, canChown, canDelete, canEdit, canLink, getCreated, getDetails, getGroupId, getId, getOwner, getPermissions, getUpdated, getVersion, isDirty, isLoaded, nullDetails, nullSafe, nullSafe, nullSafe, nullSafe, nullSafe, nullSafe, nullSafe, nullSafe, setDirty, setId, setValue, setVersion, timeOfEvent, toString
-
-
-
-
Method Detail
-
getRefPlateId
public long getRefPlateId()
Returns the id of the plate of reference.- Returns:
- See above.
-
setRefPlateId
public void setRefPlateId(long refPlateId)
Sets the id of the plate this plate acquisition is for.- Parameters:
refPlateId
- The value to set.
-
getName
public java.lang.String getName()
Returns the name of the plate acquisition.- Returns:
- See above.
-
getDescription
public java.lang.String getDescription()
Returns the description of the plate acquisition.- Returns:
- See above.
-
setName
public void setName(java.lang.String name)
Sets the name of the acquisition.- Parameters:
name
- The value to set.
-
setDescription
public void setDescription(java.lang.String description)
Sets the name of the acquisition.- Parameters:
description
- The value to set.
-
getStartTime
public java.sql.Timestamp getStartTime()
Returns the time when the first image was collected.- Returns:
- See above.
-
getEndTime
public java.sql.Timestamp getEndTime()
Returns the time when the last image was collected.- Returns:
- See above.
-
getLabel
public java.lang.String getLabel()
Returns the label associated to the plate acquisition.- Returns:
- See above.
-
getMaximumFieldCount
public int getMaximumFieldCount()
Returns the maximum number of fields in any well.- Returns:
- See above.
-
getAnnotationsCounts
public java.util.Map<java.lang.Long,java.lang.Long> getAnnotationsCounts()
Returns the number of annotations linked to the object, key: id of the user, value: number of annotation. The map may benull
if no annotation.- Returns:
- See above.
-
-