core/com.nokia.carbide.sdt.utils/src/com/nokia/sdt/utils/IFileLoader.java
author fturovic <frank.turovich@nokia.com>
Thu, 02 Apr 2009 15:23:07 -0500
branchRCL_2_0
changeset 25 1f39fea73e7e
parent 2 d760517a8095
permissions -rw-r--r--
updated splash for 2.0.4

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/
package com.nokia.sdt.utils;

import org.eclipse.core.runtime.CoreException;

import java.io.File;

/**
 * This interface manages the loading of text files in an abstract manner.
 *
 */
public interface IFileLoader {
    /**
     * Load a file from disk or memory.
     * @throws CoreException if the file does not exist or cannot
     * otherwise be loaded cleanly.
     */
    public char[] loadFileText(File file) throws CoreException;
    
	/**
	 * Get the timestamp of the file.
	 * @return
	 */
	long getModificationTime(File file);
    

}