/**
  * Adds an object that is notified about changes in the breakpoint manager.
  *
  * @param listener The listener object that is notified about changes in the breakpoint manager.
  */
 public void addListener(final IBreakpointManagerListener listener) {
   listeners.addListener(listener);
 }
Exemple #2
0
 /**
  * Adds an object that is notified about changes in the module.
  *
  * @param listener The listener object that is notified about changes in the module.
  * @throws IllegalArgumentException Thrown if the listener argument is null.
  * @throws IllegalStateException Thrown if the listener object is already listening on the module.
  */
 public void addListener(final IModuleListener listener) {
   m_listeners.addListener(listener);
 }
Exemple #3
0
 @Override
 public void addListener(final IViewEdgeListener listener) {
   m_listeners.addListener(listener);
 }
Exemple #4
0
 /**
  * Adds an object that is notified about changes in the process.
  *
  * @param listener The listener object that is notified about changes in the process.
  * @throws IllegalArgumentException Thrown if the listener argument is null.
  * @throws IllegalStateException Thrown if the listener object is already listening on the
  *     process.
  */
 public void addListener(final IProcessListener listener) {
   listeners.addListener(listener);
 }
 /**
  * Method that forwards the addListener() to the {@link ListenerProvider}.
  *
  * @param listener The listener to be added to the set of listeners.
  */
 public synchronized void addListener(final PostgreSQLNotificationListener listener) {
   m_listeners.addListener(listener);
 }
 @Override
 public void addListener(final INaviOperandTreeNodeListener listener) {
   listeners.addListener(listener);
 }