implement java/util/Observ*

This commit is contained in:
Joshua Warner
2014-01-20 10:17:22 -07:00
parent c4112db0b9
commit d2cc630736
3 changed files with 176 additions and 0 deletions

View File

@ -0,0 +1,15 @@
/* Copyright (c) 2008-2013, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
package java.util;
public interface Observer {
public void update(Observable o, Object arg);
}