Class ArrayBatchData

    • Constructor Detail

      • ArrayBatchData

        public ArrayBatchData()
    • Method Detail

      • getEntryDate

        public Date getEntryDate()
        Description copied from interface: RegisteredData
        Get the date this item was added to the database. The value is generated at creation time and can't be modified later.
        Specified by:
        getEntryDate in interface RegisteredData
      • setEntryDate

        public void setEntryDate​(Date entryDate)
      • getProtocol

        public ProtocolData getProtocol()
        Get the protocol used for printing the arrays.
        Hibernate: many-to-one
        column="`protocol_id`" not-null="false" outer-join="false"
      • setProtocol

        public void setProtocol​(ProtocolData protocol)
      • getPrintRobot

        public HardwareData getPrintRobot()
        Get the hardware used for creating this batch.
        Hibernate: many-to-one
        column="`hardware_id`" not-null="false" outer-join="false"
      • setPrintRobot

        public void setPrintRobot​(HardwareData printRobot)
      • getArrayDesign

        public ArrayDesignData getArrayDesign()
        Get the array design item that was used for this batch.
        Hibernate: many-to-one
        column="`arraydesign_id`" not-null="true" update="false" outer-join="false"
      • setArrayDesign

        public void setArrayDesign​(ArrayDesignData arrayDesign)
      • getArraySlides

        Set<ArraySlideData> getArraySlides()
        This is the inverse end.
        See Also:
        ArraySlideData.getArrayBatch()
        Hibernate: set
        lazy="true" inverse="true"
        Hibernate: collection-key
        column="`arraybatch_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.ArraySlideData"