aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/event
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-01-03 14:26:07 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-01-03 14:26:07 +0000
commit3b66927df49de1f98901c225d720dff584cc11ae (patch)
tree1c2bee4cfd26017b8c64171e2cd70df13b7624d9 /src/com/itmill/toolkit/event
parent5161c7b0423a397cf5cefee1bb15436feb1e32b9 (diff)
downloadvaadin-framework-3b66927df49de1f98901c225d720dff584cc11ae.tar.gz
vaadin-framework-3b66927df49de1f98901c225d720dff584cc11ae.zip
Millstone -> IT Mill Toolkit
svn changeset:220/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/event')
-rw-r--r--src/com/itmill/toolkit/event/Action.java2
-rw-r--r--src/com/itmill/toolkit/event/EventRouter.java2
-rw-r--r--src/com/itmill/toolkit/event/MethodEventSource.java12
-rw-r--r--src/com/itmill/toolkit/event/package.html6
4 files changed, 11 insertions, 11 deletions
diff --git a/src/com/itmill/toolkit/event/Action.java b/src/com/itmill/toolkit/event/Action.java
index ce61c97022..2b8e72e053 100644
--- a/src/com/itmill/toolkit/event/Action.java
+++ b/src/com/itmill/toolkit/event/Action.java
@@ -30,7 +30,7 @@ package com.itmill.toolkit.event;
import com.itmill.toolkit.terminal.*;
-/** Implements the MillStone action framework. This class contains
+/** Implements the action framework. This class contains
* subinterfaces for action handling and listing, and for action handler
* registrations and unregistration.
*
diff --git a/src/com/itmill/toolkit/event/EventRouter.java b/src/com/itmill/toolkit/event/EventRouter.java
index db83085300..7e1849756d 100644
--- a/src/com/itmill/toolkit/event/EventRouter.java
+++ b/src/com/itmill/toolkit/event/EventRouter.java
@@ -33,7 +33,7 @@ import java.util.LinkedList;
import java.util.Iterator;
import java.lang.reflect.Method;
-/** Event router class implementing the MillStone inheritable event
+/** Event router class implementing the inheritable event
* listening model. For more information on the event model see the
* {@link com.itmill.toolkit.event package documentation}.
*
diff --git a/src/com/itmill/toolkit/event/MethodEventSource.java b/src/com/itmill/toolkit/event/MethodEventSource.java
index fa994ee9b7..4851f34d9a 100644
--- a/src/com/itmill/toolkit/event/MethodEventSource.java
+++ b/src/com/itmill/toolkit/event/MethodEventSource.java
@@ -33,7 +33,7 @@ import java.lang.reflect.Method;
/** <p>Interface for classes supporting registeration of methods as event
* receivers.</p>
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
@@ -48,7 +48,7 @@ public interface MethodEventSource {
* activation method does not have any arguments the event object will
* not be passed to it when it's called.</p>
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
@@ -71,7 +71,7 @@ public interface MethodEventSource {
* <code>object</code>, and unless exactly one match is found,
* <code>java.lang.IllegalArgumentException</code> is thrown.</p>
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
@@ -90,7 +90,7 @@ public interface MethodEventSource {
* are registered to listen to events of type <code>eventType</code>
* generated by this component.
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
@@ -104,7 +104,7 @@ public interface MethodEventSource {
* the given object will no longer be called when the specified events
* are generated by this component.
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
@@ -125,7 +125,7 @@ public interface MethodEventSource {
* <code>target</code>, and unless exactly one match is found,
* <code>java.lang.IllegalArgumentException</code> is thrown.</p>
*
- * <p>For more information on the MillStone inheritable event mechanism
+ * <p>For more information on the inheritable event mechanism
* see the
* {@link com.itmill.toolkit.event com.itmill.toolkit.event package documentation}.</p>
*
diff --git a/src/com/itmill/toolkit/event/package.html b/src/com/itmill/toolkit/event/package.html
index aed4f0f052..0b82b94989 100644
--- a/src/com/itmill/toolkit/event/package.html
+++ b/src/com/itmill/toolkit/event/package.html
@@ -7,16 +7,16 @@
<!-- Package summary here -->
-<p>Provides classes and interfaces for the MillStone inheritable event
+<p>Provides classes and interfaces for the inheritable event
model. The model supports inheritable events and a flexible way of
registering and unregistering event listeners. It's a fundamental building
-block of the MillStone framework, and as it is included in
+block of the IT Mill Toolkit, and as it is included in
{@link com.itmill.toolkit.ui.AbstractComponent}, all UI components
automatically support it.</p>
<h2>Package Specification</h2>
-<p>The core of the MillStone event model is the inheritable event class
+<p>The core of the event model is the inheritable event class
hierarchy, and the {@link com.itmill.toolkit.event.EventRouter EventRouter}
which provide a simple, ubiquitous mechanism to transport events to all
interested parties.</p>