]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/diagram/participant/ElementJSON.java
G2DParentNode handles "undefined" child bounds separately
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / diagram / participant / ElementJSON.java
1 /*******************************************************************************
2  * Copyright (c) 2016 Association for Decentralized Information Management
3  * in 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  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.g2d.diagram.participant;
13
14 import java.util.Optional;
15
16 import org.simantics.g2d.canvas.ICanvasParticipant;
17 import org.simantics.g2d.element.IElement;
18
19 /**
20  * @author Antti Villberg
21  */
22 public interface ElementJSON extends ICanvasParticipant {
23         
24         /**
25          * @param element
26          * @return JSON that describes the provided diagram element
27          */
28         public Optional<String> getJSON(IElement element);
29
30 }