src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/CodeException.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
     1 /*
     1 /*
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
     3  */
     3  */
     4 /*
     4 /*
     5  * Licensed to the Apache Software Foundation (ASF) under one or more
     5  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * contributor license agreements.  See the NOTICE file distributed with
     6  * contributor license agreements.  See the NOTICE file distributed with
     7  * this work for additional information regarding copyright ownership.
     7  * this work for additional information regarding copyright ownership.
    29 /**
    29 /**
    30  * This class represents an entry in the exception table of the <em>Code</em>
    30  * This class represents an entry in the exception table of the <em>Code</em>
    31  * attribute and is used only there. It contains a range in which a
    31  * attribute and is used only there. It contains a range in which a
    32  * particular exception handler is active.
    32  * particular exception handler is active.
    33  *
    33  *
    34  * @version $Id: CodeException.java 1749603 2016-06-21 20:50:19Z ggregory $
    34  * @version $Id$
    35  * @see     Code
    35  * @see     Code
       
    36  * @LastModified: Jun 2019
    36  */
    37  */
    37 public final class CodeException implements Cloneable, Node {
    38 public final class CodeException implements Cloneable, Node {
    38 
    39 
    39     private int start_pc; // Range in the code the exception handler is
    40     private int start_pc; // Range in the code the exception handler is
    40     private int end_pc; // active. start_pc is inclusive, end_pc exclusive
    41     private int end_pc; // active. start_pc is inclusive, end_pc exclusive