]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/parser/ast/type/AstTypeReference.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / parser / ast / type / AstTypeReference.java
1 /*******************************************************************************\r
2  *  Copyright (c) 2010 Association for Decentralized Information Management in\r
3  *  Industry THTH ry.\r
4  *  All rights reserved. This program and the accompanying materials\r
5  *  are made available under the terms of the Eclipse Public License v1.0\r
6  *  which accompanies this distribution, and is available at\r
7  *  http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  *  Contributors:\r
10  *      VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.databoard.parser.ast.type;
13
14 import java.util.ArrayList;\r
15 import java.util.List;\r
16 \r
17 import org.simantics.databoard.parser.ast.type.visitor.AstTypeVisitor;\r
18 import org.simantics.databoard.parser.ast.type.visitor.AstTypeVisitorVoid;\r
19
20 public class AstTypeReference extends AstType {
21         public final String name;
22         public final List<AstType> parameters;
23         public final List<AstAttribute> attributes;
24         
25         public AstTypeReference(String name) {
26                 this.name = name;
27                 this.parameters = new ArrayList<AstType>(0);
28                 this.attributes = new ArrayList<AstAttribute>(0);
29         }
30         
31         public AstTypeReference(String name, AstType ... parameters) {
32                 this(name);
33                 for(AstType parameter : parameters)
34                         this.parameters.add(parameter);
35         }
36                         
37         public AstTypeReference(String name, List<AstType> parameters,
38                         List<AstAttribute> attributes) {
39                 this.name = name;
40                 this.parameters = parameters;
41                 this.attributes = attributes;
42         }
43
44         public void addAttribute(String key, String value) {
45                 attributes.add(new AstAttribute(key, value));
46         }
47         
48         @Override
49         public void accept(AstTypeVisitorVoid v) {
50                 v.visit(this);
51         }               
52         
53         @Override
54         public <T> T accept(AstTypeVisitor<T> v) {
55                 return v.visit(this);
56         }       
57 }