blob: cf123951d61ddefefe1ec1cad1d31018c56bfc18 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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.jsf.facesconfig.ui.pageflow.editpart;
/**
* This interface can be used to set NodeEditPart's preference
*
* @author Xiaoguang Zhang
*
*/
public interface INodePreference extends IFigurePreference {
/**
* Sets the text placement of the label relative to its icon. The default is
* {@link org.eclipse.draw2d.PositionConstants#EAST}. Other possible values are
* {@link org.eclipse.draw2d.PositionConstants#NORTH}, {@link org.eclipse.draw2d.PositionConstants#SOUTH} and
* {@link org.eclipse.draw2d.PositionConstants#WEST}.
*
* @param where
* the text placement
*/
void setTextPlacement(int where);
}