blob: 34fe8f88710d0d51d62973ec7af11d1bde82f56b [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.wst.css.core.internal.provisional.document;
/**
*
*/
public interface ICSSSelectorItem {
public static final int SIMPLE = 1;
public static final int COMBINATOR = 2;
/**
* @return int
*/
int getItemType();
/**
* @return java.lang.String
*/
String getString();
}