0dc8095c2302d1ff4506af663c8cbf00efae2d76
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / corext / refactoring / nls / NLSLine.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.corext.refactoring.nls;
12
13 import java.util.ArrayList;
14 import java.util.Iterator;
15 import java.util.List;
16
17 import org.eclipse.jface.util.Assert;
18
19 public class NLSLine {
20
21         private int fLineNumber;
22
23         private List fElements;
24
25         public NLSLine(int lineNumber) {
26                 fLineNumber = lineNumber;
27                 Assert.isTrue(fLineNumber >= 0);
28                 fElements = new ArrayList();
29         }
30
31         public int getLineNumber() {
32                 return fLineNumber;
33         }
34
35         /**
36          * Adds a NLS element to this line.
37          */
38         public void add(NLSElement element) {
39                 Assert.isNotNull(element);
40                 fElements.add(element);
41         }
42
43         public NLSElement[] getElements() {
44                 return (NLSElement[]) fElements
45                                 .toArray(new NLSElement[fElements.size()]);
46         }
47
48         public NLSElement get(int index) {
49                 return (NLSElement) fElements.get(index);
50         }
51
52         public boolean exists(int index) {
53                 return index >= 0 && index < fElements.size();
54         }
55
56         public int size() {
57                 return fElements.size();
58         }
59
60         /*
61          * non javaDoc only for debugging
62          * 
63          * @see Object#toString()
64          */
65         public String toString() {
66                 StringBuffer result = new StringBuffer();
67                 result.append("Line: " + fLineNumber + "\n"); //$NON-NLS-2$ //$NON-NLS-1$
68                 for (Iterator iter = fElements.iterator(); iter.hasNext();) {
69                         result.append("\t"); //$NON-NLS-1$
70                         result.append(iter.next().toString());
71                         result.append("\n"); //$NON-NLS-1$
72                 }
73                 return result.toString();
74         }
75 }