blob: b90c93e884067c6589a77b902d10ba341014ff81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.internal.core.search;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.dltk.core.search.IDLTKSearchScope;
import org.eclipse.dltk.core.search.SearchDocument;
import org.eclipse.dltk.core.search.SearchParticipant;
public class DLTKSearchDocument extends SearchDocument {
protected char[] charContents;
private boolean external;
public DLTKSearchDocument(String path, char[] contents,
SearchParticipant participant, boolean external, IProject project) {
super(path, participant, project);
this.charContents = contents;
this.external = external;
}
public DLTKSearchDocument(String path, IPath containerPath,
char[] contents, SearchParticipant participant, boolean external,
IProject project) {
super(IDLTKSearchScope.FILE_ENTRY_SEPARATOR + path, participant,
project);
this.charContents = contents;
this.external = external;
}
public void setCharContents(char[] charContents) {
this.charContents = charContents;
}
@Override
public String getContents() {
return new String(charContents);
}
@Override
public char[] getCharContents() {
return charContents;
}
@Override
public String getEncoding() {
try {
return ResourcesPlugin.getWorkspace().getRoot().getDefaultCharset();
} catch (CoreException e) {
// use no encoding
}
return null;
}
@Override
public String toString() {
return "SearchDocument(" + getPath() + ')'; //$NON-NLS-1$
}
@Override
public boolean isExternal() {
return external;
}
}