01: /*
02: * Copyright (c) 2005 Oculus Technologies Corporation, All Rights Reserved
03: */
04: package abbot;
05:
06: /**
07: * @author twall
08: *
09: */
10: public interface DynamicLoadingConstants {
11: /** Path to classes for dynamic loading; must not be included in
12: * java.class.path.
13: */
14: String DYNAMIC_CLASSPATH = "build/dynamic-test-classes";
15: /** Generic class to use for class reloading tests. */
16: String DYNAMIC_CLASSNAME = "test.dynamic.ClassForReloading";
17: /** {@link java.awt.Component}-based class to use for class reloading tests. */
18: String DYNAMIC_COMPONENT_CLASSNAME = "test.dynamic.ComponentClassForLoading";
19: }
|