/******************************************************************************* * Copyright (c) 2015 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.eef.ide.api.extensions; /** * The description of the Object. * * @author sbegaudeau * * @param <T> * The type of the Object described */ public interface IItemDescriptor<T> { /** * Returns the identifier. * * @return The identifier */ String getID(); /** * Returns the label. * * @return The label */ String getLabel(); /** * Returns the description. * * @return The description */ String getDescription(); /** * Returns the item. * * @return The item */ T getItem(); }