1 8 package org.codehaus.aspectwerkz.annotation; 9 10 import java.io.Serializable ; 11 12 17 public class AnnotationInfo implements Serializable { 18 19 22 private final String m_name; 23 24 27 private final Annotation m_annotation; 28 29 35 public AnnotationInfo(final String name, final Annotation annotation) { 36 m_name = name; 37 m_annotation = annotation; 38 } 39 40 45 public String getName() { 46 return m_name; 47 } 48 49 54 public Annotation getAnnotation() { 55 return m_annotation; 56 } 57 } | Popular Tags |