Simple ContentTypeAdapter to do no action.

This commit is contained in:
Robert Greene 2004-06-18 02:14:48 +00:00
parent 8fc1b7fad3
commit 680f0e5732

View File

@ -0,0 +1,26 @@
/*
* Created on Jun 17, 2004
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.webcodepro.applecommander.ui.swt.util.contentadapter;
/**
* A content adapter that implements all methods but performs no actions.
*
* @author Rob Greene
*/
public class NoActionContentTypeAdapter implements ContentTypeAdapter {
public void copy() {
// Do Nothing!!
}
public void print() {
// Do Nothing!!
}
public void selectAll() {
// Do Nothing!!
}
}