Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cac37eca00bd86f442e58d85b29659b013b53ba4 (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
/*******************************************************************************
 * Copyright (c) 2007 Symbian Software Limited 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:
 * Bala Torati (Symbian) - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.ui.templateengine.uitree;

import org.w3c.dom.Element;

/**
 * This interface has methods which returns a UIElement, given an Element.
 * Method to return a List of Elements, given an Element.
 * 
 * @since 4.0
 */

public interface IUIElementTreeBuilderHelper {
	/**
	 * Returns the UIElement.
	 * @param element
	 * @return UIElement
     * 
     * @since 4.0
	 */
	public UIElement getUIElement(Element element);
}

Back to the top