01: /*
02: * CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
03: * NETSCAPE COMMUNICATIONS CORPORATION
04: *
05: * Copyright (c) 1996 Netscape Communications Corporation.
06: * All Rights Reserved.
07: * Use of this Source Code is subject to the terms of the applicable
08: * license agreement from Netscape Communications Corporation.
09: */
10:
11: package applications;
12:
13: import netscape.application.FoundationApplet;
14:
15: public class NetscapeApplet extends FoundationApplet {
16: public Class classForName(String className)
17: throws ClassNotFoundException {
18: return Class.forName(className);
19: }
20: }
|