langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/AnnotationProxyMaker.java
changeset 5003 fd0b30cdbe5c
parent 3378 22011d9a9398
child 5520 86e4b9a9da40
equal deleted inserted replaced
5002:12a9e8562200 5003:fd0b30cdbe5c
   268     /**
   268     /**
   269      * ExceptionProxy for MirroredTypeException.
   269      * ExceptionProxy for MirroredTypeException.
   270      * The toString, hashCode, and equals methods foward to the underlying
   270      * The toString, hashCode, and equals methods foward to the underlying
   271      * type.
   271      * type.
   272      */
   272      */
   273     private static class MirroredTypeExceptionProxy extends ExceptionProxy {
   273     private static final class MirroredTypeExceptionProxy extends ExceptionProxy {
   274         private static final long serialVersionUID = 6662035281599933545L;
   274         private static final long serialVersionUID = 6662035281599933545L;
   275 
   275 
   276         private MirroredTypeException ex;
   276         private MirroredTypeException ex;
   277 
   277 
   278         MirroredTypeExceptionProxy(TypeMirror t) {
   278         MirroredTypeExceptionProxy(TypeMirror t) {
   310     /**
   310     /**
   311      * ExceptionProxy for MirroredTypesException.
   311      * ExceptionProxy for MirroredTypesException.
   312      * The toString, hashCode, and equals methods foward to the underlying
   312      * The toString, hashCode, and equals methods foward to the underlying
   313      * types.
   313      * types.
   314      */
   314      */
   315     private static class MirroredTypesExceptionProxy extends ExceptionProxy {
   315     private static final class MirroredTypesExceptionProxy extends ExceptionProxy {
   316         private static final long serialVersionUID = -6670822532616693951L;
   316         private static final long serialVersionUID = -6670822532616693951L;
   317 
   317 
   318         private MirroredTypesException ex;
   318         private MirroredTypesException ex;
   319 
   319 
   320         MirroredTypesExceptionProxy(Collection<TypeMirror> ts) {
   320         MirroredTypesExceptionProxy(Collection<TypeMirror> ts) {