vm/src/test/java/org/apidesign/vm4brwsr/Exceptions.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 31 Dec 2012 17:50:27 +0100
changeset 401 a9be982d9b9c
parent 400 5452b9fbd253
child 423 9b5868bf56ec
permissions -rw-r--r--
Finally block is supported
     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 /**
    21  *
    22  * @author tom
    23  */
    24 public class Exceptions {
    25     private Exceptions() {
    26     }
    27 
    28     public static int methodWithTryCatchNoThrow() {
    29         int res = 0;
    30         try {
    31             res = 1;
    32         } catch (IllegalArgumentException e) {
    33             res = 2;
    34         }
    35         //join point
    36         return res;
    37     }
    38 
    39     public static int methodWithTryCatchThrow() {
    40         int res = 0;
    41         try {
    42             res = 1;
    43             throw new IllegalArgumentException();
    44         } catch (IllegalArgumentException e) {
    45             res = 2;
    46         }
    47         //join point
    48         return res;
    49     }
    50 
    51     public static String newInstance(String n) {
    52         try {
    53             Class c;
    54             try {
    55                 c = Class.forName(n);
    56             } catch (ClassNotFoundException ex) {
    57                 return ("CNFE:" + ex.getMessage()).toString();
    58             }
    59             return c.newInstance().getClass().getName();
    60         } catch (InstantiationException | IllegalAccessException ex) {
    61             return ex.getMessage();
    62         }
    63     }
    64     
    65     private static int counter;
    66     public static int readCounter(String n) throws ClassNotFoundException {
    67         try {
    68             Class.forName(n);
    69         } finally {
    70             counter++;
    71         }
    72         return counter;
    73     }
    74 }