blob: c417f7877707a9559f61ac51b872abb30e2ce8ac [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.api.tools.internal;
import java.io.InputStream;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
/**
* A class file corresponding to a resource in the workspace.
*
* @since 1.0
*/
public class ResourceClassFile extends AbstractClassFile {
/**
* Corresponding file
*/
private IFile fFile;
/**
* Fully qualified type name
*/
private String fTypeName;
/**
* Constructs a class file on the underlying file.
*
* @param file underlying resource
*/
public ResourceClassFile(IFile file, String typeName) {
fFile = file;
fTypeName = typeName;
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.internal.provisional.IClassFile#getInputStream()
*/
public InputStream getInputStream() throws CoreException {
return fFile.getContents();
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.internal.provisional.IClassFile#getTypeName()
*/
public String getTypeName() {
return fTypeName;
}
}