]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphviz/examples/org/simantics/graphviz/examples/RecordExample1.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graphviz / examples / org / simantics / graphviz / examples / RecordExample1.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 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  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.graphviz.examples;
13
14 import org.simantics.graphviz.Graph;
15 import org.simantics.graphviz.Graphs;
16 import org.simantics.graphviz.Node;
17
18 public class RecordExample1 {
19
20         public static void main(String[] args) {
21                 Graph graph = new Graph();
22                 
23                 Node node = new Node(graph);
24                 node.setLabel("<<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"0\" CELLSPACING=\"0\"><TR><TD>&lt;AAA</TD></TR><TR><TD ALIGN=\"LEFT\">B</TD></TR></TABLE>>");
25                 node.setShape("plaintext");
26                 
27                 Graphs.show(graph);
28         }
29         
30 }