/******************************************************************************* * Copyright (c) 2000, 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.wst.jsdt.internal.core; import org.eclipse.wst.jsdt.core.IJavaScriptElement; import org.eclipse.wst.jsdt.core.IJavaScriptElementDelta; import org.eclipse.wst.jsdt.core.IJavaScriptProject; import org.eclipse.wst.jsdt.core.JavaScriptModelException; /** * Discards a working copy (decrement its use count and remove its working copy info if the use count is 0) * and signal its removal through a delta. */ public class DiscardWorkingCopyOperation extends JavaModelOperation { public DiscardWorkingCopyOperation(IJavaScriptElement workingCopy) { super(new IJavaScriptElement[] {workingCopy}); } protected void executeOperation() throws JavaScriptModelException { CompilationUnit workingCopy = getWorkingCopy(); JavaModelManager manager = JavaModelManager.getJavaModelManager(); int useCount = manager.discardPerWorkingCopyInfo(workingCopy); if (useCount == 0) { IJavaScriptProject javaProject = workingCopy.getJavaScriptProject(); if (ExternalJavaProject.EXTERNAL_PROJECT_NAME.equals(javaProject.getElementName())) { manager.removePerProjectInfo((JavaProject) javaProject); manager.containerRemove(javaProject); } if (!workingCopy.isPrimary()) { // report removed java delta for a non-primary working copy JavaElementDelta delta = new JavaElementDelta(getJavaModel()); delta.removed(workingCopy); addDelta(delta); removeReconcileDelta(workingCopy); } else { if (workingCopy.getResource().isAccessible()) { // report a F_PRIMARY_WORKING_COPY change delta for a primary working copy JavaElementDelta delta = new JavaElementDelta(getJavaModel()); delta.changed(workingCopy, IJavaScriptElementDelta.F_PRIMARY_WORKING_COPY); addDelta(delta); } else { // report a REMOVED delta JavaElementDelta delta = new JavaElementDelta(getJavaModel()); delta.removed(workingCopy, IJavaScriptElementDelta.F_PRIMARY_WORKING_COPY); addDelta(delta); } } } } /** * Returns the working copy this operation is working on. */ protected CompilationUnit getWorkingCopy() { return (CompilationUnit)getElementToProcess(); } /** * @see JavaModelOperation#isReadOnly */ public boolean isReadOnly() { return true; } }