OSDN Git Service

MOD: Use ResultNotify interface.
authortakuya-o <takuya-o>
Sat, 5 Nov 2005 21:12:39 +0000 (21:12 +0000)
committertakuya-o <takuya-o>
Sat, 5 Nov 2005 21:12:39 +0000 (21:12 +0000)
src/org/jent/checksmtp/ResultNotify.java [new file with mode: 0644]

diff --git a/src/org/jent/checksmtp/ResultNotify.java b/src/org/jent/checksmtp/ResultNotify.java
new file mode 100644 (file)
index 0000000..569e3c2
--- /dev/null
@@ -0,0 +1,6 @@
+package org.jent.checksmtp;
+
+public interface ResultNotify {
+  public void sayOK();
+  public void sayNG();
+}