andreas 2004/03/01 01:45:41
Modified: src/blocks/workflow/java/org/apache/lenya/workflow
Event.java
Log:
fixed javadocs and license
Revision Changes Path
1.2 +7 -13
cocoon-2.1/src/blocks/workflow/java/org/apache/lenya/workflow/Event.java
Index: Event.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/workflow/java/org/apache/lenya/workflow/Event.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Event.java 29 Feb 2004 17:34:46 -0000 1.1
+++ Event.java 1 Mar 2004 09:45:41 -0000 1.2
@@ -1,6 +1,4 @@
/*
-$Id$
-<License>
============================================================================
The Apache Software License, Version 1.1
@@ -24,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Lenya" and "Apache Software Foundation" must not be
+ 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -46,26 +44,22 @@
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation and was originally created by
- Michael Wechner <[EMAIL PROTECTED]>. For more information on the Apache
Soft-
- ware Foundation, please see <http://www.apache.org/>.
+ Stefano Mazzocchi <[EMAIL PROTECTED]>. For more information on the Apache
+ Software Foundation, please see <http://www.apache.org/>.
- Lenya includes software developed by the Apache Software Foundation, W3C,
- DOM4J Project, BitfluxEditor, Xopus, and WebSHPINX.
-</License>
*/
package org.apache.lenya.workflow;
/**
- *
- * @author andreas
+ * A workflow event.
+ * @author <a href="mailto:[EMAIL PROTECTED]">Andreas Hartmann</a>
*/
public interface Event {
/**
- * Get the name of this event
- *
- * @return the name
+ * Get the name of this event.
+ * @return A string.
*/
String getName();
}