summaryrefslogtreecommitdiffstats
path: root/pf4j
diff options
context:
space:
mode:
authorDecebal Suiu <decebal.suiu@gmail.com>2014-09-05 15:12:41 +0300
committerDecebal Suiu <decebal.suiu@gmail.com>2014-09-05 15:12:41 +0300
commit7ae4ccd2637af8f1d89a76b2bdddd1960315618c (patch)
treed86a3cc1de77848145e952bf0f552fdf84e29a6d /pf4j
parent0a3b25e5788d7505ddd2657cb7576cbfdf8a9358 (diff)
downloadpf4j-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.java2
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
*/