KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > code > ClassToLoad


1 /*
2  * Copyright 2002-2005 The Apache Software Foundation.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package code;
9
10 /**
11  * The test class for the VFS classloader.
12  *
13  * @author <a HREF="mailto:brian@mmmanager.org">Brian Olsen</a>
14  */

15 public class ClassToLoad
16 {
17     private String JavaDoc m_message = "**PRIVATE**";
18
19     public String JavaDoc toString()
20     {
21         return m_message;
22     }
23 }
24
Popular Tags