blob: fdf7d8bb504767cf0fe124a060bdc95e0f6c39a7 [file] [log] [blame]
/**
* Copyright (c) 2013, 2019 Angelo ZERR and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
* Mickael Istria (Red Hat Inc.) - Extracted, refactored and moved to org.eclipse
* Nitin Dahyabhai (IBM Corporation) - improve performance finding matching resources
*/
package org.eclipse.wst.html.ui.internal.contentassist.resources;
import org.eclipse.wst.xml.ui.internal.contentassist.ContentAssistRequest;
import org.w3c.dom.Node;
public class ScriptWebResourcesCompletionProposalComputer extends
AbstractWebResourcesCompletionProposalComputer {
ContentTypeSpecs fileMatcher = ContentTypeSpecs.createFor("org.eclipse.wst.jsdt.core.jsSource");
@Override
ContentTypeSpecs createFilenameMatcher() {
return fileMatcher;
}
@Override
boolean matchRequest(ContentAssistRequest contentAssistRequest) {
Node node = contentAssistRequest.getNode();
return
"script".equals(node.getLocalName()) &&
"src".equals(getCurrentAttributeName(contentAssistRequest));
}
}