diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2014-09-05 15:12:41 +0300 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2014-09-05 15:12:41 +0300 |
commit | 7ae4ccd2637af8f1d89a76b2bdddd1960315618c (patch) | |
tree | d86a3cc1de77848145e952bf0f552fdf84e29a6d /pf4j | |
parent | 0a3b25e5788d7505ddd2657cb7576cbfdf8a9358 (diff) | |
download | pf4j-7ae4ccd2637af8f1d89a76b2bdddd1960315618c.tar.gz pf4j-7ae4ccd2637af8f1d89a76b2bdddd1960315618c.zip |
specify that PluginClassLoader is a Parent Last ClassLoader - it loads the classes from the plugin's jars before delegating to the parent class loader
Diffstat (limited to 'pf4j')
-rw-r--r-- | pf4j/src/main/java/ro/fortsoft/pf4j/PluginClassLoader.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pf4j/src/main/java/ro/fortsoft/pf4j/PluginClassLoader.java b/pf4j/src/main/java/ro/fortsoft/pf4j/PluginClassLoader.java index 8167565..efa759c 100644 --- a/pf4j/src/main/java/ro/fortsoft/pf4j/PluginClassLoader.java +++ b/pf4j/src/main/java/ro/fortsoft/pf4j/PluginClassLoader.java @@ -22,6 +22,8 @@ import java.util.List; /** * One instance of this class should be created by plugin manager for every available plug-in. + * This class loader is a Parent Last ClassLoader - it loads the classes from the plugin's jars before delegating + * to the parent class loader. * * @author Decebal Suiu */ |