1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 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.jdt.launching.sourcelookup; 12 13 import java.io.File; 14 15 /** 16 * Implementation of storage for a local file 17 * (<code>java.io.File</code>). 18 * <p> 19 * This class may be instantiated; it is not intended to be subclassed. 20 * </p> 21 * @see DirectorySourceLocation 22 * @see org.eclipse.core.resources.IStorage 23 * @since 2.0 24 * @deprecated In 3.0 this class is now provided by the debug platform. Clients 25 * should use the replacement class 26 * <code>org.eclipse.debug.core.sourcelookup.containers.LocalFileStorage</code> 27 */ 28 public class LocalFileStorage extends org.eclipse.debug.core.sourcelookup.containers.LocalFileStorage { 29 30 /** 31 * Constructs and returns storage for the given file. 32 * 33 * @param file a local file 34 */ 35 public LocalFileStorage(File file){ 36 super(file); 37 } 38 39 } 40