1 package org.xmldb.xupdate.lexus.commands; 2 3 55 56 import org.w3c.dom.Node ; 57 58 63 public class DefaultCommand extends CommandObject { 64 65 68 public DefaultCommand(Node contextNode) throws Exception { 69 super(contextNode); 70 } 71 72 75 public boolean submitInstruction(int instruction) { 76 return false; 78 } 79 80 83 public boolean executeInstruction() { 84 return false; 86 } 87 88 91 public Node execute() throws Exception { 92 return contextNode; 93 } 94 95 } 96 97 | Popular Tags |