blob: bef698372da1d695f5697d666d0159fb39f1dd38 [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.metamodel.util;
public interface CSSNumberID {
final static java.lang.String N_ANGLE = "angle";//$NON-NLS-1$
final static java.lang.String N_FREQUENCY = "frequency";//$NON-NLS-1$
final static java.lang.String N_INTEGER = "integer";//$NON-NLS-1$
final static java.lang.String N_LENGTH = "length";//$NON-NLS-1$
final static java.lang.String N_PERCENTAGE = "percentage";//$NON-NLS-1$
final static java.lang.String N_TIME = "time";//$NON-NLS-1$
final static java.lang.String N_HASH = "hash"; //$NON-NLS-1$
final static java.lang.String N_NUM = "number";//$NON-NLS-1$
}