1    
2    /*
3    
4      The author of this software is Ian Kaplan
5      Bear Products International
6      www.bearcave.com
7      iank@bearcave.com
8    
9      Copyright (c) Ian Kaplan, 1999, 2000
10   
11     See copyright file for usage and licensing
12   
13   */
14   
15   package jconst;
16   
17   import java.io.*;
18   import util.*;
19   
20   /*
21    * constLong
22    *
23    */
24   public class constLong extends constLongConvert {
25     long longVal;
26   
27     public void read( DataInputStream dStream ) {
28       longVal = readLong( dStream );
29     }
30   
31     public String getString() {
32       return Long.toString( longVal );
33     }
34   
35     public void pr() {
36       System.out.print( longVal );
37     } // pr
38   
39   } // constLong
40