blob: 5bd9b1ed5aa3699554ec354f6cde8aac5c36cc3f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.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$
}