pier 2004/05/04 10:48:37
Modified: src/kernel/org/apache/cocoon/kernel CoreWirings.java
Log:
Tabs-to-spaces
Revision Changes Path
1.2 +15 -13
cocoon-2.2/src/kernel/org/apache/cocoon/kernel/CoreWirings.java
Index: CoreWirings.java
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/kernel/org/apache/cocoon/kernel/CoreWirings.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CoreWirings.java 3 May 2004 20:42:02 -0000 1.1
+++ CoreWirings.java 4 May 2004 17:48:37 -0000 1.2
@@ -9,7 +9,8 @@
import org.apache.cocoon.kernel.resolution.Resource;
/**
- * <p></p>
+ * <p>The [EMAIL PROTECTED] CoreWirings} provides an implementation of the
[EMAIL PROTECTED] Wirings}
+ * interface wrapping all blocks installed in a [EMAIL PROTECTED]
KernelDeployer}.</p>
*
* @version CVS $Revision$
* @author <a href="mailto:[EMAIL PROTECTED]">Pier Fumagalli</a>
@@ -18,22 +19,23 @@
*/
public class CoreWirings implements Wirings {
- KernelDeployer deployer = null;
+ KernelDeployer deployer = null;
- /**
- * <p>Create a new [EMAIL PROTECTED] CoreWirings} instance associated
with a specified
+ /**
+ * <p>Create a new [EMAIL PROTECTED] CoreWirings} instance associated
with a specified
* [EMAIL PROTECTED] KernelDeployer}.</p>
*
* @param deployer a <b>non null</b> [EMAIL PROTECTED] KernelDeployer}
instance.
* @throws NullPointerException if the specified deployer was
<b>null</b>.
- */
- public CoreWirings(KernelDeployer deployer) {
- super();
+ */
+ public CoreWirings(KernelDeployer deployer) {
+ super();
if (deployer == null) throw new NullPointerException("Null
deployer");
this.deployer = deployer;
- }
+ }
- public Wire lookup(Class role, String name) throws WiringException {
+ public Wire lookup(Class role, String name)
+ throws WiringException {
/* Fail if either name or role are null */
if (name == null) throw new WiringException("No name specified");
if (role == null) throw new WiringException("No role specified");
@@ -44,9 +46,9 @@
/* Wrong wiring name specified */
throw new WiringException("Unknown wiring \"" + name + "\"");
- }
+ }
- public Resource resolve(String name) {
- return null;
- }
+ public Resource resolve(String name) {
+ return null;
+ }
}