/******************************************************************************* * Copyright (c) 2007, 2010 Wind River Systems 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.dsf.debug.internal.ui.disassembly.util; import org.eclipse.core.resources.IStorage; import org.eclipse.core.runtime.CoreException; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.ui.IPersistableElement; import org.eclipse.ui.IStorageEditorInput; /** * Abstract implementation of <code>IStorageEditorInput</code>. */ abstract public class StorageEditorInput implements IStorageEditorInput { /** * Storage associated with this editor input */ private IStorage fStorage; /** * Constructs an editor input on the given storage */ public StorageEditorInput(IStorage storage) { fStorage = storage; } /** * @see IStorageEditorInput#getStorage() */ public IStorage getStorage() { return fStorage; } /** * Set new storage. For subclasses only. * @param storage */ protected void setStorage(IStorage storage) { assert storage != null; fStorage = storage; } /** * @see IEditorInput#getImageDescriptor() */ public ImageDescriptor getImageDescriptor() { return null; } /** * @see IEditorInput#getName() */ public String getName() { return getStorage().getName(); } /** * @see IEditorInput#getPersistable() */ public IPersistableElement getPersistable() { return null; } /** * @see IEditorInput#getToolTipText() */ public String getToolTipText() { return getStorage().getFullPath().toOSString(); } /** * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object object) { if (object == this) { return true; } try { return object instanceof IStorageEditorInput && getStorage().equals(((IStorageEditorInput)object).getStorage()); } catch (CoreException e) { } return false; } /** * @see java.lang.Object#hashCode() */ @Override public int hashCode() { return getStorage().hashCode(); } @SuppressWarnings("rawtypes") public Object getAdapter(Class adapter) { return null; } }