01: package com.xoetrope.builder.generic;
02:
03: import net.xoetrope.xml.XmlElement;
04:
05: /**
06: * An instruction processor store
07: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
08: * the GNU Public License (GPL), please see license.txt for more details. If
09: * you make commercial use of this software you must purchase a commercial
10: * license from Xoetrope.</p>
11: *
12: * @author luano
13: */
14: public interface XInstructionProcessor {
15: public Object process(XGenericBuilder builder, XmlElement node);
16: }
|