Class PlateTypeData

    • Constructor Detail

      • PlateTypeData

        public PlateTypeData()
    • 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)
      • getPlateGeometry

        public PlateGeometryData getPlateGeometry()
        The geometry of this plate type.
        Hibernate: many-to-one
        column="`plategeometry_id`" not-null="true" outer-join="false" update="false"
      • setPlateGeometry

        public void setPlateGeometry​(PlateGeometryData plateGeometry)
      • getEventTypes

        Set<PlateEventTypeData> getEventTypes()
        The event types defined for this plate type. Plates of this type can have events of the corresponding event type. This is the inverse end.
        See Also:
        PlateEventTypeData.getPlateType()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`platetype_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.PlateEventTypeData"
      • getPlates

        Set<PlateData> getPlates()
        The plates of this type. This is the inverse end.
        See Also:
        PlateData.getPlateType()
        Hibernate: set
        lazy="true" inverse="true"
        Hibernate: collection-key
        column="`platetype_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.PlateData"