]> gerrit.simantics Code Review - simantics/platform.git/blob - AstMap.java
8bdf0c946ba9bb35d58a599a5fb6549a198baf09
[simantics/platform.git] / AstMap.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.value;
13
14 import java.util.Collections;
15 import java.util.List;
16
17 import org.simantics.databoard.parser.ast.value.visitor.AstValueVisitor;
18 import org.simantics.databoard.parser.ast.value.visitor.AstValueVisitorVoid;
19
20 public class AstMap implements AstValue {
21         public static final AstMap EMPTY = new AstMap(Collections.<AstMapAssignment>emptyList());
22
23         public final List<AstMapAssignment> components;
24
25         public AstMap(List<AstMapAssignment> components) {
26                 this.components = components;
27         }       
28         
29         @Override
30         public <T> T accept(AstValueVisitor<T> v) {
31                 return v.visit(this);
32         }
33
34         @Override
35         public void accept(AstValueVisitorVoid v) {
36                 v.visit(this);
37         }       
38 }