home *** CD-ROM | disk | FTP | other *** search
- /*
- * Decaf_Example.java
- *
- *
- *
- * Copyright (C) 1996 Ada Resource Association (ARA), Columbus, Ohio.
- * Author: Gilles Demailly
- *
- *
- * Permission to use, copy, modify, and distribute this software and its
- * documentation for any purpose and without fee is hereby granted,
- * provided that the above copyright and authorship notice appear in all
- * copies and that both that copyright notice and this permission notice
- * appear in supporting documentation.
- *
- * The ARA makes no representations about the suitability of this software
- * for any purpose. It is provided "as is" without express
- * or implied warranty.
- *
- *
- */
-
- /*
- * This class Decaf_Example is not supposed to implement anything;
- * it is just coded to provide a decompilation example
- *
- */
-
- public class Decaf_Example {
- private char name [];
- private int size;
-
- private final static boolean always_true = true;
- private static boolean initially_false = false;
-
- private static void init_class () {
- initially_false = true;
- }
-
- public static void main (String args[]) {
- System.out.println (" Welcome to the Decaf Test !");
- }
-
- }
-