]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/SVGImageInfo.java
Combination of Simantics-platform related changes and fixes for district
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / SVGImageInfo.java
1 /*******************************************************************************
2  * Copyright (c) 2012 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.diagram.adapter;
13
14 import org.simantics.databoard.Bindings;
15 import org.simantics.databoard.annotations.Optional;
16 import org.simantics.databoard.binding.Binding;
17 import org.simantics.databoard.util.Bean;
18
19 /**
20  * @author Tuukka Lehtonen
21  */
22 public class SVGImageInfo extends Bean {
23
24     public static final Binding BINDING = Bindings.getBindingUnchecked(SVGImageInfo.class);
25
26     public String id;
27
28     @Optional
29     public String svgDocument;
30
31     @Optional
32     public double[] transform;
33
34     public SVGImageInfo() {
35         super(BINDING);
36     }
37
38 }