[Lutinutil-commits] r1343 - lutinutil/trunk/src/main/java/org/codelutin/util
Author: tchemit Date: 2009-02-15 17:31:53 +0000 (Sun, 15 Feb 2009) New Revision: 1343 Modified: lutinutil/trunk/src/main/java/org/codelutin/util/ApplicationConfig.java Log: add more methods to access PCL on ApplicationConfig Modified: lutinutil/trunk/src/main/java/org/codelutin/util/ApplicationConfig.java =================================================================== --- lutinutil/trunk/src/main/java/org/codelutin/util/ApplicationConfig.java 2009-02-14 12:57:20 UTC (rev 1342) +++ lutinutil/trunk/src/main/java/org/codelutin/util/ApplicationConfig.java 2009-02-15 17:31:53 UTC (rev 1343) @@ -971,4 +971,18 @@ public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) { pcs.removePropertyChangeListener(propertyName, listener); } + + public synchronized boolean hasListeners(String propertyName) { + return pcs.hasListeners(propertyName); + } + + public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName) { + return pcs.getPropertyChangeListeners(propertyName); + } + + public synchronized PropertyChangeListener[] getPropertyChangeListeners() { + return pcs.getPropertyChangeListeners(); + } + + }
participants (1)
-
tchemit@users.labs.libre-entreprise.org