KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > impl > xtas > InstructionsSupport


1 package org.exoplatform.services.xml.querying.impl.xtas;
2 import org.exoplatform.services.xml.querying.InvalidStatementException;
3
4 /**
5  * XTAS Statement's instructions
6  * life-cycle supported operations.
7  * @version $Id: InstructionsSupport.java 566 2005-01-25 12:50:49Z kravchuk $
8  */

9 public interface InstructionsSupport {
10     Instruction pickNextInstruction() throws ForbiddenOperationException, InvalidStatementException;
11
12     void addInstruction (String JavaDoc type, String JavaDoc match, UniFormTree newValue) throws InvalidStatementException;
13
14     Instruction[] getInstructions( );
15 }
16
Popular Tags