diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-05-28 09:29:23 -0700 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 12:25:27 +0200 |
commit | 3ceffec46f98ac71824910a666304547730bac49 (patch) | |
tree | fa1ca6748bff0f51f90d9843b076061cb313ee8b /java/src/IceInternal/TimerTask.java | |
parent | bug 3207 - adding IceGrid GUI to Windows README files (diff) | |
download | ice-3ceffec46f98ac71824910a666304547730bac49.tar.bz2 ice-3ceffec46f98ac71824910a666304547730bac49.tar.xz ice-3ceffec46f98ac71824910a666304547730bac49.zip |
bug 3223 - TimerTask should be in its own file
Diffstat (limited to 'java/src/IceInternal/TimerTask.java')
-rw-r--r-- | java/src/IceInternal/TimerTask.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/java/src/IceInternal/TimerTask.java b/java/src/IceInternal/TimerTask.java new file mode 100644 index 00000000000..7cb7655267a --- /dev/null +++ b/java/src/IceInternal/TimerTask.java @@ -0,0 +1,15 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +package IceInternal; + +public interface TimerTask +{ + void runTimerTask(); +} |