diff options
author | enikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519> | 2008-12-25 11:50:42 +0000 |
---|---|---|
committer | enikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519> | 2008-12-25 11:50:42 +0000 |
commit | abf092e0de1525cf9e9f031ec76e1f52487abbb0 (patch) | |
tree | 2e2e5bb34ea3bc593e82aeea214ffb4adec66178 /java/src/com | |
parent | 54c1c7dac73ac5a0271534bbdb7bab05782fc2e2 (diff) | |
download | tigervnc-abf092e0de1525cf9e9f031ec76e1f52487abbb0.tar.gz tigervnc-abf092e0de1525cf9e9f031ec76e1f52487abbb0.zip |
[Layout] Application don't needs interface RecordInterface anymore. Interface removed.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3477 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'java/src/com')
-rw-r--r-- | java/src/com/tightvnc/vncviewer/RecordInterface.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/java/src/com/tightvnc/vncviewer/RecordInterface.java b/java/src/com/tightvnc/vncviewer/RecordInterface.java deleted file mode 100644 index 31fb79ed..00000000 --- a/java/src/com/tightvnc/vncviewer/RecordInterface.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.tightvnc.vncviewer; - -import java.io.IOException; - -// -// This interface will be used for recording sessions -// by decoders classes in com.tighvnc.decoder package. -// -public interface RecordInterface { - // - // Recording state methods - // - public boolean canWrite(); - - // - // Write data methods - // - - public void write(byte b[]) throws IOException; - public void write(byte b[], int off, int len) throws IOException; - public void writeByte(byte b) throws IOException; - public void writeByte(int i) throws IOException; - public void writeIntBE(int v) throws IOException; - public void writeShortBE(int v) throws IOException; -} |