Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 15902c2e8b67337a43204c51a25650bba26f3e20 (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
/*******************************************************************************
 * Copyright (c) 2004, 2005 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 Corporation - initial API and implementation
 *******************************************************************************/

/*
 * Created on Dec 13, 2004
 */
package org.eclipse.cdt.core.dom.ast;

/**
 * @author aniefer
 */
public interface IArrayType extends IType {
    /**
     * get the type that this is an array of
     * @throws DOMException
     */
    IType getType() throws DOMException;
    
    /**
     * get the expression that represents the size of this array
     * @throws DOMException
     */
    IASTExpression getArraySizeExpression() throws DOMException;
}

Back to the top