]> source.dussan.org Git - tigervnc.git/commitdiff
[Layout, Developement] Added interface Repaintable. Interface will be used in Hextile...
authorenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Fri, 19 Dec 2008 06:37:28 +0000 (06:37 +0000)
committerenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Fri, 19 Dec 2008 06:37:28 +0000 (06:37 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3425 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/src/com/tightvnc/decoder/common/Repaintable.java [new file with mode: 0644]

diff --git a/java/src/com/tightvnc/decoder/common/Repaintable.java b/java/src/com/tightvnc/decoder/common/Repaintable.java
new file mode 100644 (file)
index 0000000..de11f4c
--- /dev/null
@@ -0,0 +1,7 @@
+package com.tightvnc.decoder.common;
+
+public interface Repaintable {
+
+  public void scheduleRepaint(int x, int y, int w, int h);
+
+}