Package net.xeoh.plugins.base.annotations.meta

Examples of net.xeoh.plugins.base.annotations.meta.Author


                rval.add(string);
            }
            break;

        case AUTHORS:
            final Author author = plugin.getClass().getAnnotation(Author.class);
            if (author == null) break;
            rval.add(author.name());
            break;

        case VERSION:
            final Version version = plugin.getClass().getAnnotation(Version.class);
            if (version == null) break;
View Full Code Here


                rval.add(string);
            }
            break;

        case AUTHORS:
            Author author = pluggable.getClass().getAnnotation(Author.class);
            if (author == null) break;
            rval.add(author.name());
            break;

        case VERSION:
            Version version = pluggable.getClass().getAnnotation(Version.class);
            if (version == null) break;
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.base.annotations.meta.Author

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.