blob: 3ec07c6ca2e510c5c92f5ec701d5614b8ae0cf0b [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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.gmf.runtime.diagram.ui.internal.util;
/**
* Internal user interface constants used by the diagram.ui layer.
*
* @author wdiu, Wayne Diu
*/
public interface IUIConstants {
/**
* Default number of items to display in a drop down list.
* Can be passed into the setVisibleItemCount method of the
* Combo class.
*
* @see org.eclipse.swt.widgets.Combo#setVisibleItemCount(int)
*/
public static final int DEFAULT_DROP_DOWN_SIZE = 20;
}