1 16 package org.apache.cocoon.components.treeprocessor; 17 18 import org.apache.cocoon.environment.Environment; 19 20 26 27 public class NullNode extends AbstractProcessingNode { 28 29 public final boolean invoke(Environment env, InvokeContext context) throws Exception { 30 31 getLogger().warn("Invoke on NullNode at " + getLocation()); 32 return false; 33 34 } 35 } 36 | Popular Tags |