コード例 #1
0
ファイル: WPart11Dialog.java プロジェクト: timburrow/ovj3
 /**
  * Adds the specified change listener.
  *
  * @param l the property change listener to be added.
  */
 public static void addChangeListener(PropertyChangeListener l) {
   if (m_pcsTypesMgr != null) m_pcsTypesMgr.addPropertyChangeListener(l);
 }
コード例 #2
0
ファイル: WPart11Dialog.java プロジェクト: timburrow/ovj3
 /**
  * Adds the specified change listener with the specified property.
  *
  * @param strProperty the property to which the listener should be listening to.
  * @param l the property change listener to be added.
  */
 public static void addChangeListener(String strProperty, PropertyChangeListener l) {
   if (m_pcsTypesMgr != null) m_pcsTypesMgr.addPropertyChangeListener(strProperty, l);
 }
コード例 #3
0
ファイル: Toolkit.java プロジェクト: andreasbaumann/tomato
 public void addPropertyChangeListener(String name, PropertyChangeListener pcl) {
   changeSupport.addPropertyChangeListener(name, pcl);
 }