View Javadoc
1   package fr.ifremer.dali.dto.referential;
2   
3   import fr.ifremer.quadrige3.ui.core.dto.CommentAware;
4   import fr.ifremer.quadrige3.ui.core.dto.referential.BaseReferentialDTO;
5   import javax.annotation.Generated;
6   
7   @Generated(value = "org.nuiton.eugene.java.SimpleJavaBeanTransformer", date = "Mon May 09 09:01:03 CEST 2022")
8   public interface SamplingEquipmentDTO extends CommentAware, BaseReferentialDTO {
9   
10      String PROPERTY_DESCRIPTION = "description";
11  
12      String PROPERTY_SIZE = "size";
13  
14      String PROPERTY_COMMENT = "comment";
15  
16      String PROPERTY_UNIT = "unit";
17  
18      String getDescription();
19  
20      void setDescription(String description);
21  
22      Double getSize();
23  
24      void setSize(Double size);
25  
26      String getComment();
27  
28      void setComment(String comment);
29  
30      UnitDTO getUnit();
31  
32      void setUnit(UnitDTO unit);
33  
34  } //SamplingEquipmentDTO