]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
ecb0c11fcb686d6642fa15ca304463636201858e
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in 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.sysdyn.representation.visitors;\r
13 \r
14 import org.simantics.sysdyn.representation.Auxiliary;\r
15 import org.simantics.sysdyn.representation.Cloud;\r
16 import org.simantics.sysdyn.representation.Dependency;\r
17 import org.simantics.sysdyn.representation.Flow;\r
18 import org.simantics.sysdyn.representation.Stock;\r
19 import org.simantics.sysdyn.representation.Valve;\r
20 \r
21 public class ElementVisitorVoidAdapter implements IElementVisitorVoid {\r
22 \r
23     @Override\r
24     public void visit(Auxiliary auxiliary) {\r
25     }\r
26 \r
27     @Override\r
28     public void visit(Stock stock) {\r
29     }\r
30 \r
31     @Override\r
32     public void visit(Valve valve) {\r
33     }\r
34 \r
35     @Override\r
36     public void visit(Cloud cloud) {\r
37     }\r
38 \r
39     @Override\r
40     public void visit(Dependency dependency) {\r
41     }\r
42 \r
43     @Override\r
44     public void visit(Flow flow) {\r
45     }\r
46 \r
47 }\r