• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2  *
3  * This program and the accompanying materials are made available under
4  * the terms of the Common Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
6  *
7  * $Id: IElementList.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
8  */
9 package com.vladium.emma.report.html.doc;
10 
11 // ----------------------------------------------------------------------------
12 /**
13  * @author Vlad Roubtsov, (C) 2003
14  */
15 public
16 interface IElementList extends IContent
17 {
18     // public: ................................................................
19 
add(IContent content)20     IElementList add (IContent content);
add(int index, IContent content)21     IElementList add (int index, IContent content);
size()22     int size (); // element count
23 
24     // protected: .............................................................
25 
26     // package: ...............................................................
27 
28     // private: ...............................................................
29 
30 } // end of class
31 // ----------------------------------------------------------------------------