DynamicLoadingConstants.java :  » Testing » abbot-1.0.1 » abbot » Java Open Source

Java Open Source » Testing » abbot 1.0.1 
abbot 1.0.1 » abbot » DynamicLoadingConstants.java
/*
 * Copyright (c) 2005 Oculus Technologies Corporation, All Rights Reserved
 */
package abbot;

/**
 * @author twall
 *
 */
public interface DynamicLoadingConstants {
    /** Path to classes for dynamic loading; must not be included in
     * java.class.path.
     */
    String DYNAMIC_CLASSPATH = "build/dynamic-test-classes";
    /** Generic class to use for class reloading tests. */
    String DYNAMIC_CLASSNAME = "test.dynamic.ClassForReloading";
    /** {@link java.awt.Component}-based class to use for class reloading tests. */
    String DYNAMIC_COMPONENT_CLASSNAME = "test.dynamic.ComponentClassForLoading";
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.