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:02 CEST 2022")
8   public interface UnitDTO extends CommentAware, BaseReferentialDTO {
9   
10      String PROPERTY_SYMBOL = "symbol";
11  
12      String PROPERTY_COMMENT = "comment";
13  
14      String getSymbol();
15  
16      void setSymbol(String symbol);
17  
18      String getComment();
19  
20      void setComment(String comment);
21  
22  } //UnitDTO