1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jface.internal.databinding.provisional.viewers; 12 13 /** 14 * Constants used to describe properties of JFace viewers. 15 * 16 * @since 1.0 17 * 18 */ 19 public interface ViewersProperties { 20 21 /** 22 * Property ID constant denoting the content collection property of JFace 23 * structured viewers. 24 */ 25 public static final String CONTENT = "content"; //$NON-NLS-1$ 26 27 /** 28 * Property ID constant denoting the (single) selection property of JFace 29 * structured viewers. 30 */ 31 public static final String SINGLE_SELECTION = "single_selection"; //$NON-NLS-1$ 32 33 /** 34 * Property ID constant denoting the (multi) selection collection property 35 * of JFace structured viewers. 36 */ 37 public static final String MULTI_SELECTION = "multi_selection"; //$NON-NLS-1$ 38 39 } 40