|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.ClassLoader
jas.engine.DynamicClassLoader
public class DynamicClassLoader
A customized class loader. When JAS loads a project file, the classes specified by the project file can be everywhere on the file system. Into the project file there are the paths where to find model's classes. Often these classpaths are not system classpaths, so to let the engine load dinamically models it is necessary to use this dynamic class loader.
When the loadClass method is called the ClassLoader asks to the system class loader if the given class is available in the system classpath, otherwise the class is searched into the paths specified by the project file.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
DynamicClassLoader()
Default constructor. |
Method Summary | |
---|---|
void |
addPath(java.io.File directory)
Add the directory into the local classpath. |
void |
clearPaths()
Empty local classpath list. |
java.io.File |
getClassPath(java.lang.String name)
Return the directory where class file is stored. |
DynamicClassLoader |
getClearClone()
|
java.util.Set |
getJarPaths()
Return a set of jar archives contained in the local classpath. |
java.util.Set |
getPaths()
Return a set of directories contained in the local classpath. |
void |
removePath(java.io.File directory)
Remove directory from the local classpath. |
Methods inherited from class java.lang.ClassLoader |
---|
clearAssertionStatus, getParent, getResource, getResourceAsStream, getResources, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, loadClass, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DynamicClassLoader()
Method Detail |
---|
public void addPath(java.io.File directory)
directory
- The directory or the jar file to be added to classpath.public void clearPaths()
public java.io.File getClassPath(java.lang.String name)
name
- The string representing class file name (without extension).
public DynamicClassLoader getClearClone()
public java.util.Set getJarPaths()
public java.util.Set getPaths()
public void removePath(java.io.File directory)
directory
- The directory or the jar file to be removed.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |