]> source.dussan.org Git - tigervnc.git/commitdiff
[Layout] Application don't needs interface RecordInterface anymore. Interface removed.
authorenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Thu, 25 Dec 2008 11:50:42 +0000 (11:50 +0000)
committerenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Thu, 25 Dec 2008 11:50:42 +0000 (11:50 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3477 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/src/com/tightvnc/vncviewer/RecordInterface.java [deleted file]

diff --git a/java/src/com/tightvnc/vncviewer/RecordInterface.java b/java/src/com/tightvnc/vncviewer/RecordInterface.java
deleted file mode 100644 (file)
index 31fb79e..0000000
+++ /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;
-}