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.*; 14 15 /** 16 * Convenience implementation of non-plug-in 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.INonPluginEntry 27 * @see org.eclipse.update.core.model.NonPluginEntryModel 28 * @since 2.0 29 */ 30 public class NonPluginEntry 31 extends NonPluginEntryModel 32 implements INonPluginEntry { 33 34 /** 35 * Non-plug-in entry default constructor 36 */ 37 public NonPluginEntry() { 38 super(); 39 } 40 } 41