Package org.codehaus.annogen.generate

Examples of org.codehaus.annogen.generate.AnnogenInfo


  {
    if (!a175class.isAnnotation()) {
      throw new IllegalArgumentException
        ("Requested type is not an Annotation: "+a175class.getName());
    }
    AnnogenInfo info = (AnnogenInfo)a175class.getAnnotation(AnnogenInfo.class);
    if (info == null) {
      throw new ClassNotFoundException
        ("Missing @AnnogenInfo on specified class "+a175class.getName());
    }
    return a175class.getClassLoader().loadClass(info.annoBeanClass());
  }
View Full Code Here

TOP

Related Classes of org.codehaus.annogen.generate.AnnogenInfo

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.