blob: d1f28e18adfa9fe3bb65c36f38a306d89ba94c9d [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.search.internal.ui.text;
import org.eclipse.core.resources.IFile;
import org.eclipse.search.ui.text.Match;
public class FileMatch extends Match {
private long fCreationTimeStamp;
public FileMatch(IFile element, int offset, int length) {
super(element, offset, length);
fCreationTimeStamp= element.getModificationStamp();
}
public IFile getFile() {
return (IFile) getElement();
}
public long getCreationTimeStamp() {
return fCreationTimeStamp;
}
}