Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/chaoswg/xtc4y/test/classloaders/Ifc.java


1   //$Header: /cvsroot/xtc4y/xtc4y/src/com/chaoswg/xtc4y/test/classloaders/Ifc.java,v 1.1.1.1 2003/08/07 13:40:26 toggm Exp $
2   /******************************************************************************
3    * XTC4y - eXtreme Testing Collection 4 you                                   *
4    * -------------------------------------------------------------------------- *
5    * URL: http://www.chaoswg.com/xtc4y                                          *
6    * Author: Mike Toggweiler (2.dog@gmx.ch)                                     *
7    *                                                                            *
8    * Last Updated: $Date: 2003/08/07 13:40:26 $, by $Author: toggm $            *
9    * Version: $Revision: 1.1.1.1 $                                                  *
10   * -------------------------------------------------------------------------- *
11   * COPYRIGHT:   (c) 2003 by Mike Toggweiler                                   *
12   *                                                                            *
13   * This program is free software; you can redistribute it and/or modify       *
14   * it under the terms of the GNU General Public License as published by       *
15   * the Free Software Foundation; either version 2 of the License, or          *
16   * (at your option) any later version.                                        *
17   *****************************************************************************/
18  package com.chaoswg.xtc4y.test.classloaders;
19  
20  /**
21   * A simple abstract class to test the classloader
22   * @author Mike Toggweiler
23   **/
24  public interface Ifc {
25      public Object getAbstractObject();
26      public int getAbstractInt();
27      public float getAbstractFloat();
28      public double getAbstractDouble();
29      public long getAbstractLong();
30      public short getAbstractShort();
31      public byte getAbstractByte();
32      public void getAbstractVoid();
33  
34      public Object getObject();
35      public int getInt();
36      public float getFloat();
37      public double getDouble();
38      public long getLong();
39      public short getShort();
40      public byte getByte();
41      public void getVoid();
42  }