From 0594e5b8ac4e7211a2265e955db493dbbb284286 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 28 Jul 2007 05:18:05 +0000 Subject: [PATCH] Put headers on a bunch of files. --- contrib/java/ManyMouse.java | 8 ++++++++ contrib/java/ManyMouseEvent.java | 8 ++++++++ contrib/java/ManyMouseJava.c | 8 ++++++++ contrib/java/TestManyMouse.java | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/contrib/java/ManyMouse.java b/contrib/java/ManyMouse.java index b55c90e..6cc5c6c 100644 --- a/contrib/java/ManyMouse.java +++ b/contrib/java/ManyMouse.java @@ -1,3 +1,11 @@ +/* + * Java bindings to the ManyMouse C code, via JNI. + * + * Please see the file LICENSE in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ + public class ManyMouse { // Native method hooks. diff --git a/contrib/java/ManyMouseEvent.java b/contrib/java/ManyMouseEvent.java index 47cfd6a..1f8fc8d 100644 --- a/contrib/java/ManyMouseEvent.java +++ b/contrib/java/ManyMouseEvent.java @@ -1,3 +1,11 @@ +/* + * Java bindings to the ManyMouse C code, via JNI. + * + * Please see the file LICENSE in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ + public class ManyMouseEvent { // Event types... diff --git a/contrib/java/ManyMouseJava.c b/contrib/java/ManyMouseJava.c index 00e1eb2..3664b6a 100644 --- a/contrib/java/ManyMouseJava.c +++ b/contrib/java/ManyMouseJava.c @@ -1,3 +1,11 @@ +/* + * Java bindings to the ManyMouse C code, via JNI. + * + * Please see the file LICENSE in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ + /* The C interface... */ #include "manymouse.h" diff --git a/contrib/java/TestManyMouse.java b/contrib/java/TestManyMouse.java index ae8e867..17a8202 100644 --- a/contrib/java/TestManyMouse.java +++ b/contrib/java/TestManyMouse.java @@ -1,3 +1,11 @@ +/* + * Test app to demonstrate usage of the Java bindings. + * + * Please see the file LICENSE in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ + public class TestManyMouse { public static void main(String args[])