1 /*
2 * Copyright (c) 2001-2003 The XDoclet team
3 * All rights reserved.
4 */
5 package xjavadoc;
6
7 /***
8 * This is a type-safe iterator for XConstructor
9 *
10 * @deprecated Use a plain java.lang.Iterator and do the cast instead.
11 * @created 24. juli 2002
12 */
13 public interface ConstructorIterator extends XIterator
14 {
15 public XConstructor next();
16 }