mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-02-03 15:33:26 +00:00
Simple ContentTypeAdapter to do no action.
This commit is contained in:
parent
8fc1b7fad3
commit
680f0e5732
@ -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!!
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user