org.apache.catalina.loader
インタフェース Reloader

既知の実装クラスの一覧:
WebappClassLoader, StandardClassLoader

public interface Reloader

Internal interface that ClassLoader implementations may optionally implement to support the auto-reload functionality of the classloader associated with the context.

バージョン:
$Revision: 1.5 $ $Date: 2001/07/22 20:25:10 $
作成者:
Craig R. McClanahan

メソッドの概要
 void addRepository(java.lang.String repository)
          Add a new repository to the set of places this ClassLoader can look for classes to be loaded.
 java.lang.String[] findRepositories()
          Return a String array of the current repositories for this class loader.
 boolean modified()
          Have one or more classes or resources been modified so that a reload is appropriate?
 

メソッドの詳細

addRepository

public void addRepository(java.lang.String repository)
Add a new repository to the set of places this ClassLoader can look for classes to be loaded.
パラメータ:
repository - Name of a source of classes to be loaded, such as a directory pathname, a JAR file pathname, or a ZIP file pathname
例外:
java.lang.IllegalArgumentException - if the specified repository is invalid or does not exist

findRepositories

public java.lang.String[] findRepositories()
Return a String array of the current repositories for this class loader. If there are no repositories, a zero-length array is returned.

modified

public boolean modified()
Have one or more classes or resources been modified so that a reload is appropriate?


Copyright ? 2000-2001 Apache Software Foundation. All Rights Reserved.