1 /******************************************************************************* 2 * Copyright (c) 2000, 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.update.core; 12 13 import org.eclipse.update.core.model.InstallHandlerEntryModel; 14 15 /** 16 * Convenience implementation of an install handler entry. 17 * <p> 18 * This class may be instantiated or subclassed by clients. 19 * </p> 20 * <p> 21 * <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to 22 * change significantly before reaching stability. It is being made available at this early stage to solicit feedback 23 * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken 24 * (repeatedly) as the API evolves. 25 * </p> 26 * @see org.eclipse.update.core.IInstallHandlerEntry 27 * @see org.eclipse.update.core.model.InstallHandlerEntryModel 28 * @see org.eclipse.update.core.IInstallHandler 29 * @since 2.0 30 */ 31 public class InstallHandlerEntry 32 extends InstallHandlerEntryModel 33 implements IInstallHandlerEntry { 34 35 /** 36 * Constructor for InstallHandlerEntry. 37 * @since 2.0 38 */ 39 public InstallHandlerEntry() { 40 super(); 41 } 42 } 43