vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 02 Dec 2012 14:01:17 +0100
branchreflection
changeset 237 84ffc347412d
parent 235 bf0a77f029c4
child 261 5d1e20215d12
permissions -rw-r--r--
Annotations with string attributes
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import java.lang.annotation.Annotation;
    22 import java.net.MalformedURLException;
    23 
    24 /**
    25  *
    26  * @author Jaroslav Tulach <jtulach@netbeans.org>
    27  */
    28 @ClassesMarker(number = 10)
    29 @ClassesNamer(name = "my text")
    30 public class Classes {
    31     public static boolean equalsClassesOfExceptions() {
    32         return MalformedURLException.class.getSuperclass() == IOException.class;
    33     }
    34     public static boolean differenceInClasses() {
    35         Class<?> c1 = MalformedURLException.class;
    36         Class<?> c2 = IOException.class;
    37         return c1 != c2;
    38     }
    39     
    40     public static String classForInstance() {
    41         return new IOException().getClass().getName().toString();
    42     }
    43     
    44     public static String name() {
    45         return IOException.class.getName().toString();
    46     }
    47     public static String simpleName() {
    48         return IOException.class.getSimpleName();
    49     }
    50     public static String canonicalName() {
    51         return IOException.class.getCanonicalName();
    52     }
    53     public static boolean newInstance() throws Exception {
    54         IOException ioe = IOException.class.newInstance();
    55         if (ioe instanceof IOException) {
    56             return ioe.getClass() == IOException.class;
    57         }
    58         throw new IllegalStateException("Not a subtype: " + ioe);
    59     }
    60     public static int getMarker() {
    61         if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
    62             return -2;
    63         }
    64         ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
    65         return cm == null ? -1 : cm.number();
    66     }
    67     public static String getNamer(boolean direct) {
    68         if (direct) {
    69             ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
    70             return cm == null ? null : cm.name();
    71         }
    72         for (Annotation a : Classes.class.getAnnotations()) {
    73             if (a instanceof ClassesNamer) {
    74                 return ((ClassesNamer)a).name();
    75             }
    76         }
    77         return null;
    78     }
    79 }