]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/parser/ast/type/AstTypeReference.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / parser / ast / type / AstTypeReference.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  Industry THTH ry.
4  *  All rights reserved. This program and the accompanying materials
5  *  are made available under the terms of the Eclipse Public License v1.0
6  *  which accompanies this distribution, and is available at
7  *  http://www.eclipse.org/legal/epl-v10.html
8  *
9  *  Contributors:
10  *      VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.databoard.parser.ast.type;
13
14 import java.util.ArrayList;
15 import java.util.List;
16
17 import org.simantics.databoard.parser.ast.type.visitor.AstTypeVisitor;
18 import org.simantics.databoard.parser.ast.type.visitor.AstTypeVisitorVoid;
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 }