~ubuntu-branches/ubuntu/utopic/libisrt-java/utopic

« back to all changes in this revision

Viewing changes to src/de/intarsys/tools/event/EventTools.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-08-31 17:16:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: package-import@ubuntu.com-20110831171654-i306ydrg00gribvc
Tags: 4.8.20100629-1
* Team upload
* New upstream release
* Improve downloading / creating the orig tarball. Remove javadoc files.
* Switch to javahelper.
* Drop versioned package libisrt-4.7-java.
* Switch to debhelper level 7.
* Update Standards-Version: 3.9.1.
* Switch to source format 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
import de.intarsys.tools.functor.IArgs;
33
33
 
34
34
public class EventTools {
35
 
        public static IFunctorEvent getEvent(IArgs args) {
36
 
                return (IFunctorEvent) args.get(IFunctorEvent.ARG_EVENT);
 
35
        public static IRequestEvent getEvent(IArgs args) {
 
36
                return (IRequestEvent) args.get(IRequestEvent.ARG_EVENT);
37
37
        }
38
38
 
39
 
        public static IFunctorEvent getJEvent(IArgs args) {
40
 
                return (IFunctorEvent) args.get(IFunctorEvent.ARG_JEVENT);
 
39
        public static IRequestEvent getJEvent(IArgs args) {
 
40
                return (IRequestEvent) args.get(IRequestEvent.ARG_JEVENT);
41
41
        }
42
42
 
43
43
}