jaroslav@222: /** jaroslav@222: * Back 2 Browser Bytecode Translator jaroslav@222: * Copyright (C) 2012 Jaroslav Tulach jaroslav@222: * jaroslav@222: * This program is free software: you can redistribute it and/or modify jaroslav@222: * it under the terms of the GNU General Public License as published by jaroslav@222: * the Free Software Foundation, version 2 of the License. jaroslav@222: * jaroslav@222: * This program is distributed in the hope that it will be useful, jaroslav@222: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@222: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@222: * GNU General Public License for more details. jaroslav@222: * jaroslav@222: * You should have received a copy of the GNU General Public License jaroslav@222: * along with this program. Look for COPYING file in the top folder. jaroslav@222: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@222: */ jaroslav@222: package org.apidesign.vm4brwsr; jaroslav@222: jaroslav@222: import java.io.IOException; jaroslav@222: import java.net.MalformedURLException; jaroslav@222: jaroslav@222: /** jaroslav@222: * jaroslav@222: * @author Jaroslav Tulach jaroslav@222: */ jaroslav@222: public class Classes { jaroslav@222: public static boolean equalsClassesOfExceptions() { jaroslav@222: return MalformedURLException.class.getSuperclass() == IOException.class; jaroslav@222: } jaroslav@222: public static boolean differenceInClasses() { jaroslav@222: Class c1 = MalformedURLException.class; jaroslav@222: Class c2 = IOException.class; jaroslav@222: return c1 != c2; jaroslav@222: } jaroslav@222: jaroslav@222: public static String name() { jaroslav@222: return IOException.class.getName(); jaroslav@222: } jaroslav@222: public static String simpleName() { jaroslav@222: return IOException.class.getSimpleName(); jaroslav@222: } jaroslav@222: public static String canonicalName() { jaroslav@222: return IOException.class.getCanonicalName(); jaroslav@222: } jaroslav@222: public static IOException newInstance() throws InstantiationException, IllegalAccessException { jaroslav@222: return IOException.class.newInstance(); jaroslav@222: } jaroslav@222: }