refactored packages
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / structure / GraphElement.java
1 /*
2  * JavaInspect - Utility to visualize java software
3  * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.inspector.java.structure;
11
12 public interface GraphElement {
13
14         public String getDot();
15
16         public String getEmbeddedDot();
17
18         public String getGraphId();
19
20         public boolean isVisible();
21
22 }