blob: 10690d20dca105b1cd4e4af5dbcb33c75604ebef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 Sybase, Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.css2.property;
/**
* @author mengbo
*/
public class ListStylePositionMeta extends CSSPropertyMeta {
private static final String INITIAL_VALUE = ICSSPropertyID.VAL_OUTSIDE;
/**
* Default constructor
*/
public ListStylePositionMeta() {
super(true, INITIAL_VALUE);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jst.pagedesigner.css2.property.CSSPropertyMeta#getKeywordValues()
*/
protected String[] getKeywordValues() {
// TODO Auto-generated method stub
return null;
}
}