1 /*
2 * Copyright (c) 2001-2003 The XDoclet team
3 * All rights reserved.
4 */
5 package xjavadoc;
6
7 import java.util.Iterator;
8
9 /***
10 * Implementation of MethodIterator.
11 *
12 * @created 24. juli 2002
13 */
14 class ClassIteratorImpl extends IteratorImpl implements ClassIterator
15 {
16 public ClassIteratorImpl( Iterator iterator )
17 {
18 super( iterator );
19 }
20 public XClass next()
21 {
22 return ( XClass ) n();
23 }
24 }