X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=javainspect.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fmethods%2FAnnotation.java;fp=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fmethods%2FAnnotation.java;h=0000000000000000000000000000000000000000;hp=d3f282fd152279764adc0b45fee8acf4c5a21175;hb=c98cda3c339e0a3345884e17e7657301d285ca1f;hpb=b2f519fd934cd49afbb5cfc88b3d2be396af0afa diff --git a/src/main/java/eu/svjatoslav/inspector/java/methods/Annotation.java b/src/main/java/eu/svjatoslav/inspector/java/methods/Annotation.java deleted file mode 100755 index d3f282f..0000000 --- a/src/main/java/eu/svjatoslav/inspector/java/methods/Annotation.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * JavaInspect - Utility to visualize java software - * Copyright (C) 2013-2020, 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 eu.svjatoslav.commons.string.tokenizer.InvalidSyntaxException; -import eu.svjatoslav.commons.string.tokenizer.Tokenizer; -import eu.svjatoslav.commons.string.tokenizer.TokenizerMatch; - -public class Annotation { - - private String name; - - public Annotation(final Tokenizer tokenizer) throws InvalidSyntaxException { - - name = tokenizer.getNextToken().token; - - if (!tokenizer.consumeIfNextToken("(")) - return; - - int depth = 1; - - while (true) { - final TokenizerMatch token = tokenizer.getNextToken(); - - if (token == null) - return; - - if ("(".equals(token.token)) - depth++; - if (")".equals(token.token)) - depth--; - - if (depth == 0) - return; - } - - } - -}