home *** CD-ROM | disk | FTP | other *** search
/ Hacker / Hacker.iso / HACKER / DECOMP / DECAF / TESTS / decaexam.jav < prev    next >
Encoding:
Text File  |  1996-09-19  |  1.1 KB  |  45 lines

  1. /*
  2.  * Decaf_Example.java
  3.  *
  4.  *
  5.  *
  6.  * Copyright (C) 1996 Ada Resource Association (ARA), Columbus, Ohio.
  7.  * Author: Gilles Demailly
  8.  *
  9.  *
  10.  * Permission to use, copy, modify, and distribute this software and its
  11.  * documentation for any purpose and without fee is hereby granted,
  12.  * provided that the above copyright and authorship notice appear in all
  13.  * copies and that both that copyright notice and this permission notice
  14.  * appear in supporting documentation.
  15.  * 
  16.  * The ARA makes no representations about the suitability of this software
  17.  * for any purpose.  It is provided "as is" without express
  18.  * or implied warranty.
  19.  * 
  20.  *
  21.  */
  22.  
  23. /*
  24.  *  This class Decaf_Example is not supposed to implement anything;
  25.  *  it is just coded to provide a decompilation example
  26.  *  
  27.  */
  28.  
  29. public class Decaf_Example {
  30.    private char name [];
  31.    private int  size;
  32.  
  33.    private final static boolean always_true       = true;
  34.    private static       boolean initially_false   = false;
  35.  
  36.    private static void init_class () {
  37.       initially_false = true;
  38.       }
  39.       
  40.    public static void main (String args[]) {
  41.       System.out.println (" Welcome to the Decaf Test !");
  42.       } 
  43.  
  44.    }
  45.