Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a925a70041eb2278d8c762c077561196af2f8794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*******************************************************************************
 * Copyright (c) 2002, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * IBM Rational Software - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.parser.ast.complete;
import java.util.ArrayList;
import java.util.List;

import org.eclipse.cdt.internal.core.parser.pst.ITypeInfo;

/**
 * @author hamer
 *
 */
public class ExpressionResultList extends ExpressionResult {
	private List resultList = new ArrayList();
	ExpressionResultList(){
		
	}

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.internal.core.parser.ast.complete.ExpressionResult#getResult()
	 */
	public ITypeInfo getResult() {
		// TODO Auto-generated method stub
		return (ITypeInfo)resultList.get(0);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.internal.core.parser.ast.complete.ExpressionResult#setResult(org.eclipse.cdt.internal.core.parser.pst.TypeInfo)
	 */
	public void setResult(ITypeInfo info) {
		// TODO Auto-generated method stub
		resultList.add(info);
	}

	public void setResult( ExpressionResultList result ){
	    List list = result.getResultList();
	    int size = list.size();
	    for( int i = 0; i < size; i++ ){
	        resultList.add( list.get( i ) );    
	    }
	}
	
	/**
	 * @return
	 */
	public List getResultList() {
		return resultList;
	}

	/**
	 * @param list
	 */
	public void setResultList(List list) {
		resultList = list;
	}

}

Back to the top