refactored packages
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / structure / GraphElement.java
diff --git a/src/main/java/eu/svjatoslav/inspector/java/structure/GraphElement.java b/src/main/java/eu/svjatoslav/inspector/java/structure/GraphElement.java
new file mode 100644 (file)
index 0000000..c8bab85
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * JavaInspect - Utility to visualize java software
+ * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public License
+ * as published by the Free Software Foundation.
+ */
+
+package eu.svjatoslav.inspector.java.structure;
+
+public interface GraphElement {
+
+       public String getDot();
+
+       public String getEmbeddedDot();
+
+       public String getGraphId();
+
+       public boolean isVisible();
+
+}