All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.emf.edit.provider.IStructuredItemContentProvider Maven / Gradle / Ivy

/**
 * Copyright (c) 2002-2006 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 - Initial API and implementation
 */
package org.eclipse.emf.edit.provider;


import java.util.Collection;


/**
 * This is the interface needed to populate 
 * the top level items in a TreeViewer, 
 * the items of a ListViewer, 
 * or the rows of a TableViewer. 
 */
public interface IStructuredItemContentProvider
{
  /**
   * This does the same thing as IStructuredContentProvider.getElements.
   */
  public Collection getElements(Object object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy