branch develop updated (a9154d9 -> a21a380)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from a9154d9 Use last stable of Jaxx new a21a380 Le bouton avec le rappel de configuration de source ne se met plus à jour correctement (Fixes #8546) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit a21a3807175115be8ccd81a58bb7521ee4de59ce Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Sep 20 09:40:54 2016 +0200 Le bouton avec le rappel de configuration de source ne se met plus à jour correctement (Fixes #8546) Summary of changes: .../configuration/ObserveSwingApplicationConfig.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit a21a3807175115be8ccd81a58bb7521ee4de59ce Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Sep 20 09:40:54 2016 +0200 Le bouton avec le rappel de configuration de source ne se met plus à jour correctement (Fixes #8546) --- .../configuration/ObserveSwingApplicationConfig.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/application-swing-configuration/src/main/java/fr/ird/observe/application/swing/configuration/ObserveSwingApplicationConfig.java b/application-swing-configuration/src/main/java/fr/ird/observe/application/swing/configuration/ObserveSwingApplicationConfig.java index e418b8c..a87d205 100644 --- a/application-swing-configuration/src/main/java/fr/ird/observe/application/swing/configuration/ObserveSwingApplicationConfig.java +++ b/application-swing-configuration/src/main/java/fr/ird/observe/application/swing/configuration/ObserveSwingApplicationConfig.java @@ -392,6 +392,22 @@ public class ObserveSwingApplicationConfig extends GeneratedObserveSwingApplicat AfterInit, BeforeExit } + public void addPropertyChangeListener(PropertyChangeListener listener) { + pcs.addPropertyChangeListener(listener); + } + + public void removePropertyChangeListener(PropertyChangeListener listener) { + pcs.removePropertyChangeListener(listener); + } + + public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener) { + pcs.addPropertyChangeListener(propertyName, listener); + } + + public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) { + pcs.removePropertyChangeListener(propertyName, listener); + } + private void firePropertyChange(String propertyName, Object newValue) { pcs.firePropertyChange(propertyName, null, newValue); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm