blob: dd61b5a3a100bb5a4ee2db9c8d2607c17b67ecc3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.ui.ide;
import java.net.URI;
import org.eclipse.core.filesystem.EFS;
import org.eclipse.core.filesystem.IFileStore;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.IPersistableElement;
import org.eclipse.ui.IURIEditorInput;
import org.eclipse.ui.model.IWorkbenchAdapter;
/**
* Implements an IEditorInput instance appropriate for
* <code>IFileStore</code> elements that represent files
* that are not part of the current workspace.
*
* @since 3.3
*
*/
public class FileStoreEditorInput implements IURIEditorInput {
/**
* The workbench adapter which simply provides the label.
*
* @since 3.3
*/
private class WorkbenchAdapter implements IWorkbenchAdapter {
/*
* @see org.eclipse.ui.model.IWorkbenchAdapter#getChildren(java.lang.Object)
*/
public Object[] getChildren(Object o) {
return null;
}
/*
* @see org.eclipse.ui.model.IWorkbenchAdapter#getImageDescriptor(java.lang.Object)
*/
public ImageDescriptor getImageDescriptor(Object object) {
return null;
}
/*
* @see org.eclipse.ui.model.IWorkbenchAdapter#getLabel(java.lang.Object)
*/
public String getLabel(Object o) {
return ((FileStoreEditorInput)o).getName();
}
/*
* @see org.eclipse.ui.model.IWorkbenchAdapter#getParent(java.lang.Object)
*/
public Object getParent(Object o) {
return null;
}
}
private IFileStore fFileStore;
private WorkbenchAdapter fWorkbenchAdapter= new WorkbenchAdapter();
/**
* @param fileStore
*/
public FileStoreEditorInput(IFileStore fileStore) {
Assert.isNotNull(fileStore);
Assert.isTrue(EFS.SCHEME_FILE.equals(fileStore.getFileSystem().getScheme()));
fFileStore = fileStore;
fWorkbenchAdapter = new WorkbenchAdapter();
}
/*
* @see org.eclipse.ui.IEditorInput#exists()
*/
public boolean exists() {
return fFileStore.fetchInfo().exists();
}
/*
* @see org.eclipse.ui.IEditorInput#getImageDescriptor()
*/
public ImageDescriptor getImageDescriptor() {
return null;
}
/*
* @see org.eclipse.ui.IEditorInput#getName()
*/
public String getName() {
return fFileStore.getName();
}
/*
* @see org.eclipse.ui.IEditorInput#getPersistable()
*/
public IPersistableElement getPersistable() {
return null;
}
/*
* @see org.eclipse.ui.IEditorInput#getToolTipText()
*/
public String getToolTipText() {
return fFileStore.toString();
}
/*
* @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
*/
public Object getAdapter(Class adapter) {
if (IWorkbenchAdapter.class.equals(adapter))
return fWorkbenchAdapter;
return Platform.getAdapterManager().getAdapter(this, adapter);
}
/*
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object o) {
if (o == this)
return true;
if (o instanceof FileStoreEditorInput) {
FileStoreEditorInput input= (FileStoreEditorInput) o;
return fFileStore.equals(input.fFileStore);
}
return false;
}
/*
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return fFileStore.hashCode();
}
/* (non-Javadoc)
* @see org.eclipse.ui.IURIEditorInput#getURI()
*/
public URI getURI() {
return fFileStore.toURI();
}
}