refactored packages
[javainspect.git] / src / main / java / eu / svjatoslav / javainspect / structure / GraphElement.java
diff --git a/src/main/java/eu/svjatoslav/javainspect/structure/GraphElement.java b/src/main/java/eu/svjatoslav/javainspect/structure/GraphElement.java
deleted file mode 100644 (file)
index 7aed6fe..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * 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.javainspect.structure;
-
-public interface GraphElement {
-
-       public String getDot();
-
-       public String getEmbeddedDot();
-
-       public String getGraphId();
-
-       public boolean isVisible();
-
-}