01: /*
02: * To change this template, choose Tools | Templates
03: * and open the template in the editor.
04: */
05:
06: package org.netbeans.modules.bpel.design.model;
07:
08: import java.util.Iterator;
09: import java.util.Stack;
10: import java.util.regex.Pattern;
11:
12: /**
13: *
14: * @author Alexey
15: */
16: public class PatternIterator implements Iterator<Pattern> {
17: // public Stack<Iterator<Pattern>> state;
18:
19: public PatternIterator(Pattern root) {
20: //state.
21: }
22:
23: public boolean hasNext() {
24: throw new UnsupportedOperationException("Not supported yet.");
25: }
26:
27: public Pattern next() {
28: throw new UnsupportedOperationException("Not supported yet.");
29: }
30:
31: public void remove() {
32: throw new UnsupportedOperationException("Not supported yet.");
33: }
34:
35: }
|