View Javadoc
1   package xuml.tools.model.compiler.info;
2   
3   import java.util.List;
4   
5   public class MyFind {
6   
7       private final List<MyIndependentAttribute> attributes;
8   
9       public MyFind(List<MyIndependentAttribute> attributes) {
10          this.attributes = attributes;
11      }
12  
13      public List<MyIndependentAttribute> getAttributes() {
14          return attributes;
15      }
16  
17  }