]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE-transferables/src/com/edf/gde/transferables/AttributeGroupTO.java
Salome HOME
Added missing sources
[modules/gde.git] / projects / GDE-transferables / src / com / edf / gde / transferables / AttributeGroupTO.java
1 package com.edf.gde.transferables;
2
3 import java.io.Serializable;
4 import java.util.Collection;
5
6 /**
7  *
8  * @author F62173
9  */
10 public class AttributeGroupTO implements Serializable {
11     
12     private static final long serialVersionUID = 1L;
13     private long id;
14     private Collection<AttributeTO> attributeCollection;
15
16     public AttributeGroupTO() {
17     }
18
19     public AttributeGroupTO(long id, Collection<AttributeTO> attributeCollection) {
20         this.id = id;
21         this.attributeCollection = attributeCollection;
22     }
23
24     public long getId() {
25         return id;
26     }
27
28     public void setId(long id) {
29         this.id = id;
30     }
31
32     public Collection<AttributeTO> getAttributeCollection() {
33         return attributeCollection;
34     }
35
36     public void setAttributeCollection(Collection<AttributeTO> attributeCollection) {
37         this.attributeCollection = attributeCollection;
38     }
39     
40 }