Exemplo n.º 1
0
 /**
  * Removes a listener object from the breakpoint manager.
  *
  * @param listener The listener object to remove from the breakpoint manager.
  */
 public void removeListener(final IBreakpointManagerListener listener) {
   listeners.removeListener(listener);
 }
Exemplo n.º 2
0
 /**
  * Removes a listener object from the module.
  *
  * @param listener The listener object to remove from the module.
  * @throws IllegalArgumentException Thrown if the listener argument is null.
  * @throws IllegalStateException Thrown if the listener object was not listening on the module.
  */
 public void removeListener(final IModuleListener listener) {
   m_listeners.removeListener(listener);
 }
Exemplo n.º 3
0
 /**
  * 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);
 }
Exemplo n.º 4
0
 @Override
 public void addListener(final IViewEdgeListener listener) {
   m_listeners.addListener(listener);
 }
Exemplo n.º 5
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);
 }
Exemplo n.º 6
0
 @Override
 public void removeListener(final IViewEdgeListener listener) {
   m_listeners.removeListener(listener);
 }
Exemplo n.º 7
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);
 }
Exemplo n.º 8
0
 /**
  * Removes a listener object from the process.
  *
  * @param listener The listener object to remove from the process.
  * @throws IllegalArgumentException Thrown if the listener argument is null.
  * @throws IllegalStateException Thrown if the listener object was not listening on the process.
  */
 public void removeListener(final IProcessListener listener) {
   listeners.removeListener(listener);
 }
 /**
  * Method that forwards the removeListener() to the {@link ListenerProvider}.
  *
  * @param listener The listener to be removed from the set of listeners.
  */
 public synchronized void removeListener(final PostgreSQLNotificationListener listener) {
   m_listeners.removeListener(listener);
 }
Exemplo n.º 10
0
 @Override
 public void removeListener(final INaviOperandTreeNodeListener listener) {
   listeners.removeListener(listener);
 }