vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 01 Dec 2012 08:52:30 +0100
branchreflection
changeset 225 25e350c6385f
parent 223 860933a7787f
child 231 dde8422fb5ae
permissions -rw-r--r--
Adding each constructor function field
jaroslav@222
     1
/**
jaroslav@222
     2
 * Back 2 Browser Bytecode Translator
jaroslav@222
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@222
     4
 *
jaroslav@222
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@222
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@222
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@222
     8
 *
jaroslav@222
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@222
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@222
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@222
    12
 * GNU General Public License for more details.
jaroslav@222
    13
 *
jaroslav@222
    14
 * You should have received a copy of the GNU General Public License
jaroslav@222
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@222
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@222
    17
 */
jaroslav@222
    18
package org.apidesign.vm4brwsr;
jaroslav@222
    19
jaroslav@222
    20
import java.io.IOException;
jaroslav@222
    21
import java.net.MalformedURLException;
jaroslav@222
    22
jaroslav@222
    23
/**
jaroslav@222
    24
 *
jaroslav@222
    25
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@222
    26
 */
jaroslav@222
    27
public class Classes {
jaroslav@222
    28
    public static boolean equalsClassesOfExceptions() {
jaroslav@222
    29
        return MalformedURLException.class.getSuperclass() == IOException.class;
jaroslav@222
    30
    }
jaroslav@222
    31
    public static boolean differenceInClasses() {
jaroslav@222
    32
        Class<?> c1 = MalformedURLException.class;
jaroslav@222
    33
        Class<?> c2 = IOException.class;
jaroslav@222
    34
        return c1 != c2;
jaroslav@222
    35
    }
jaroslav@222
    36
    
jaroslav@225
    37
    public static String classForInstance() {
jaroslav@225
    38
        return new IOException().getClass().getName().toString();
jaroslav@225
    39
    }
jaroslav@225
    40
    
jaroslav@222
    41
    public static String name() {
jaroslav@223
    42
        return IOException.class.getName().toString();
jaroslav@222
    43
    }
jaroslav@222
    44
    public static String simpleName() {
jaroslav@222
    45
        return IOException.class.getSimpleName();
jaroslav@222
    46
    }
jaroslav@222
    47
    public static String canonicalName() {
jaroslav@222
    48
        return IOException.class.getCanonicalName();
jaroslav@222
    49
    }
jaroslav@222
    50
    public static IOException newInstance() throws InstantiationException, IllegalAccessException {
jaroslav@222
    51
        return IOException.class.newInstance();
jaroslav@222
    52
    }
jaroslav@222
    53
}