Package ch.qos.cal10n

Examples of ch.qos.cal10n.ResourceBundleName


*/
public class AnnotationExtractor {

  static public <E extends Enum<?>> String getResourceBundleName(
      Class<E> enumClass) {
    ResourceBundleName rbnAnnotation = (ResourceBundleName) enumClass
        .getAnnotation(ResourceBundleName.class);
    if (rbnAnnotation == null) {
      return null;
    }
    return rbnAnnotation.value();
  }
View Full Code Here

TOP

Related Classes of ch.qos.cal10n.ResourceBundleName

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.