blob: 2d6c6fd98dcd3603feb1fd33f23aad7ec3d2a250 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.filebuffers.tests;
import java.io.File;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.filebuffers.FileBuffers;
/**
* FileBuffersForNonExistingExternalFiles
*/
public class FileBuffersForNonExistingExternalFiles extends FileBufferFunctions {
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#tearDown()
*/
protected void tearDown() throws Exception {
File file= FileBuffers.getSystemFileAtLocation(getPath());
FileTool.delete(file);
super.tearDown();
}
protected IPath createPath(IProject project) throws Exception {
IPath path= FileBuffersTestPlugin.getDefault().getStateLocation();
path= path.append("NonExistingExternalFile");
return new Path(path.toFile().getAbsolutePath());
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#markReadOnly()
*/
protected void markReadOnly() throws Exception {
File file= FileBuffers.getSystemFileAtLocation(getPath());
file.setReadOnly();
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#isStateValidationSupported()
*/
protected boolean isStateValidationSupported() {
return false;
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#deleteUnderlyingFile()
*/
protected boolean deleteUnderlyingFile() throws Exception {
return false;
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#moveUnderlyingFile()
*/
protected IPath moveUnderlyingFile() throws Exception {
return null;
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#modifyUnderlyingFile()
*/
protected boolean modifyUnderlyingFile() throws Exception {
return false;
}
/*
* @see org.eclipse.core.filebuffers.tests.FileBufferFunctions#getAnnotationModelClass()
*/
protected Class getAnnotationModelClass() throws Exception {
return null;
}
}