Class BioPlateEventData

    • Constructor Detail

      • BioPlateEventData

        public BioPlateEventData()
    • 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)
      • getEventType

        public BioPlateEventTypeData getEventType()
        The type of the event.
        Hibernate: many-to-one
        column="`bioplateeventtype_id`" not-null="true" outer-join="false"
      • getEventDate

        public Date getEventDate()
        Get the date this event happened in the lab.
        Hibernate: property
        column="`event_date`" type="date" not-null="false"
      • setEventDate

        public void setEventDate​(Date eventDate)
      • getProtocol

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

        public void setProtocol​(ProtocolData protocol)
      • getHardware

        public HardwareData getHardware()
        Get the hardware used in this event
        Hibernate: many-to-one
        column="`hardware_id`" not-null="false" outer-join="false"
      • setHardware

        public void setHardware​(HardwareData hardware)
      • getKit

        public KitData getKit()
        Get the kit used in this event.
        Since:
        3.7
        Hibernate: many-to-one
        column="`kit_id`" not-null="false" outer-join="false"
      • setKit

        public void setKit​(KitData kit)
      • getParticipants

        public Set<BioPlateEventParticipantData> getParticipants()
        This is the inverse end.
        See Also:
        BioPlateEventParticipantData.getEvent()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`event_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.BioPlateEventParticipantData"