blob: 53cc785fcb1567e940ffef28b4a55a6e8b6a2c90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Jesper Moller, 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:
* Jesper Moller - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.api.typesystem;
import javax.xml.namespace.QName;
/**
* @since 2.0
*/
public interface ElementItem extends ItemType {
boolean isWildcard();
QName getName();
TypeDefinition getType();
}