diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2007-01-03 14:26:07 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2007-01-03 14:26:07 +0000 |
commit | 3b66927df49de1f98901c225d720dff584cc11ae (patch) | |
tree | 1c2bee4cfd26017b8c64171e2cd70df13b7624d9 /src/com/itmill/toolkit/ui/AbstractComponent.java | |
parent | 5161c7b0423a397cf5cefee1bb15436feb1e32b9 (diff) | |
download | vaadin-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/ui/AbstractComponent.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/AbstractComponent.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractComponent.java b/src/com/itmill/toolkit/ui/AbstractComponent.java index dfbcc90913..3016861790 100644 --- a/src/com/itmill/toolkit/ui/AbstractComponent.java +++ b/src/com/itmill/toolkit/ui/AbstractComponent.java @@ -44,7 +44,7 @@ import java.lang.reflect.Method; /** An abstract class that defines default implementation for the * {@link Component} interface. Basic UI components that are not derived * from an external component can inherit this class to easily qualify as a - * MillStone component. Most components in the MillStone base UI package do + * IT Mill Toolkit component. Most components in the toolkit do * just that. * * @author IT Mill Ltd. @@ -83,7 +83,7 @@ public abstract class AbstractComponent /** The container this component resides in. */ private Component parent = null; - /** The EventRouter used for the MillStone event model. */ + /** The EventRouter used for the event model. */ private EventRouter eventRouter = null; /** The internal error message of the component. */ @@ -625,7 +625,7 @@ public abstract class AbstractComponent * 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> * @@ -652,7 +652,7 @@ public abstract class AbstractComponent * <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> * @@ -678,7 +678,7 @@ public abstract class AbstractComponent * 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> * @@ -695,7 +695,7 @@ public abstract class AbstractComponent * 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> * @@ -719,7 +719,7 @@ public abstract class AbstractComponent * <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> * |