[Layout, Developement] Added interface Repaintable. Interface will be used in HextileDecoder class to draw immediantly little rectangles of data while processing big rectangle.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3425 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/java/src/com/tightvnc/decoder/common/Repaintable.java b/java/src/com/tightvnc/decoder/common/Repaintable.java
new file mode 100644
index 0000000..de11f4c
--- /dev/null
+++ b/java/src/com/tightvnc/decoder/common/Repaintable.java
@@ -0,0 +1,7 @@
+package com.tightvnc.decoder.common;
+
+public interface Repaintable {
+
+  public void scheduleRepaint(int x, int y, int w, int h);
+
+}