View Javadoc
1   package fr.ifremer.dali.dto.referential.pmfm;
2   
3   import fr.ifremer.quadrige3.ui.core.dto.referential.BaseReferentialDTO;
4   import javax.annotation.Generated;
5   
6   @Generated(value = "org.nuiton.eugene.java.SimpleJavaBeanTransformer", date = "Mon May 09 09:01:03 CEST 2022")
7   public interface ParameterGroupDTO extends BaseReferentialDTO {
8   
9       String PROPERTY_DESCRIPTION = "description";
10  
11      String PROPERTY_PARENT_PARAMETER_GROUP = "parentParameterGroup";
12  
13      String getDescription();
14  
15      void setDescription(String description);
16  
17      ParameterGroupDTO getParentParameterGroup();
18  
19      void setParentParameterGroup(ParameterGroupDTO parentParameterGroup);
20  
21  } //ParameterGroupDTO