1 4 package com.tc.aspectwerkz.annotation; 5 6 import com.tc.backport175.Annotation; 7 8 import java.io.Serializable ; 9 10 15 public class AnnotationInfo implements Serializable { 16 17 20 private final String m_name; 21 22 25 private final Annotation m_annotation; 26 27 33 public AnnotationInfo(final String name, final Annotation annotation) { 34 m_name = name; 35 m_annotation = annotation; 36 } 37 38 43 public String getName() { 44 return m_name; 45 } 46 47 52 public Annotation getAnnotation() { 53 return m_annotation; 54 } 55 } | Popular Tags |