Commit 99010ccb by Michael Koch Committed by Michael Koch

BeanContextEvent.java: Reformated.

2003-03-24  Michael Koch  <konqueror@gmx.de>

	* java/beans/beancontext/BeanContextEvent.java:
	Reformated.

From-SVN: r64778
parent b099daeb
2003-03-24 Michael Koch <konqueror@gmx.de>
* java/beans/beancontext/BeanContextEvent.java:
Reformated.
2003-03-23 Eric Blake <ebb9@email.byu.edu>
* java/lang/natStringBuffer.cc (regionMatches): New function.
......
......@@ -44,11 +44,13 @@ import java.util.EventObject;
* Generic superclass for events fired by <code>BeanContext</code>s.
*
* @author John Keiser
* @since JDK1.2
* @since 1.2
*/
public abstract class BeanContextEvent extends EventObject
{
private static final long serialVersionUID = 7267998073569045052L;
/**
* The <code>BeanContext</code> that most recently passed this
* event on.
......@@ -62,7 +64,8 @@ public abstract class BeanContextEvent extends EventObject
*
* @param source the source of the event.
*/
protected BeanContextEvent(BeanContext source) {
protected BeanContextEvent(BeanContext source)
{
super(source);
}
......@@ -70,7 +73,8 @@ public abstract class BeanContextEvent extends EventObject
* Get the <code>BeanContext</code> that originated this event.
* @return the originator of this event.
*/
public BeanContext getBeanContext() {
public BeanContext getBeanContext()
{
return (BeanContext)getSource();
}
......@@ -81,7 +85,8 @@ public abstract class BeanContextEvent extends EventObject
*
* @return the most recent propagator of this event.
*/
public BeanContext getPropagatedFrom() {
public BeanContext getPropagatedFrom()
{
return propagatedFrom;
}
......@@ -89,7 +94,8 @@ public abstract class BeanContextEvent extends EventObject
* Tell whether this event has been propagated.
* @return <code>true</code> iff <code>getPropagatedFrom() != null</code>.
*/
public boolean isPropagated() {
public boolean isPropagated()
{
return propagatedFrom != null;
}
......@@ -97,7 +103,8 @@ public abstract class BeanContextEvent extends EventObject
* Set the most recent propagator of this event.
* @param propagator the most recent propagator of this event.
*/
public void setPropagatedFrom(BeanContext propagator) {
public void setPropagatedFrom(BeanContext propagator)
{
propagatedFrom = propagator;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment