Code Search for Developers
 
 
  

DummyDistributedUI.java from MASE: Agile Software Engineering at Krugle


Show DummyDistributedUI.java syntax highlighted

package persister.local;

import persister.UIEventPropagator;
import persister.Keystroke;
import persister.NotConnectedException;
import persister.PlannerUIChangeListener;

/**
 * @author FM 
 * Class does nothing as it is only used when connected to the LocalPersister (i.e. 
 * we do not need to propagatte MouseEvents etc
 */
public class DummyDistributedUI implements UIEventPropagator {

	public void addPlannerUIChangeListener(PlannerUIChangeListener listener) {
	}

	public void bringToFront(long id) throws NotConnectedException {
	}

	public void deleteRemoteMouse(long id) throws NotConnectedException {

	}

	public void moveMouse(String name, int x, int y)
			throws NotConnectedException {

	}

	public void removePlannerUIChangeListener(PlannerUIChangeListener listener) {

	}

	public void sendKeystrokeOut(Keystroke ch) throws NotConnectedException {

	}

}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  AsynchronousLocalPersister.java
  DummyDistributedUI.java
  PersisterToXML.java