1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * %W% %E%
 *
 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */


package sun.tools.javap;

import java.util.*;
import java.io.*;

/**
 * Strores LocalVariableTable data information.
 *
 * @author  Sucheta Dambalkar (Adopted code from jdis)
 */
class LocVarData {
    short start_pc, length, name_cpx, sig_cpx, slot;
    
    public LocVarData() {
    }
    
    /**
     * Read LocalVariableTable attribute.
     */
    public LocVarData(DataInputStream in) throws IOException {
    start_pc = in.readShort();
    length=in.readShort();
    name_cpx=in.readShort();
    sig_cpx=in.readShort();
    slot=in.readShort();
    
    }
}

			
			

Browsed Source: [clear]