updated copyright notice
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / methods / Clazz.java
old mode 100644 (file)
new mode 100755 (executable)
index 3c5333b..2825e3f
@@ -1,11 +1,20 @@
+/*
+ * JavaInspect - Utility to visualize java software
+ * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+ */
+
 package eu.svjatoslav.inspector.java.methods;
 
 import java.util.ArrayList;
 import java.util.List;
 
-import eu.svjatoslav.inspector.tokenizer.InvalidSyntaxException;
-import eu.svjatoslav.inspector.tokenizer.Tokenizer;
-import eu.svjatoslav.inspector.tokenizer.TokenizerMatch;
+import eu.svjatoslav.commons.string.tokenizer.InvalidSyntaxException;
+import eu.svjatoslav.commons.string.tokenizer.Tokenizer;
+import eu.svjatoslav.commons.string.tokenizer.TokenizerMatch;
 
 public class Clazz {
 
@@ -52,6 +61,10 @@ public class Clazz {
                }
        }
 
+       public String getFullName() {
+               return packageName + "." + className;
+       }
+
        public void parseClassBody(final Tokenizer tokenizer) {
                tokenizer.skipUntilDataEnd();
        }