01: /*
02: * Copyright (C) Chaperon. All rights reserved.
03: * -------------------------------------------------------------------------
04: * This software is published under the terms of the Apache Software License
05: * version 1.1, a copy of which has been included with this distribution in
06: * the LICENSE file.
07: */
08:
09: package net.sourceforge.chaperon.model.extended;
10:
11: /**
12: * for(PatternIterator i=map.iterate(ancestor); i.hasNext();) Pattern successor = i.next();
13: */
14: public interface PatternIterator {
15: public boolean hasNext();
16:
17: public Pattern next();
18: }
|