All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.earcam.utilitarian.site.search.offline.XrefHtmlReferenceProcessor Maven / Gradle / Ivy

/*-
 * #%L
 * io.earcam.utilitarian.site.search.offline
 * %%
 * Copyright (C) 2017 earcam
 * %%
 * SPDX-License-Identifier: (BSD-3-Clause OR EPL-1.0 OR Apache-2.0 OR MIT)
 * 
 * You must choose to accept, in full - any individual or combination of 
 * the following licenses:
 * 
 * #L%
 */
package io.earcam.utilitarian.site.search.offline;

import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

public class XrefHtmlReferenceProcessor extends AbstractHtmlReferenceProcessor {

	private static final Path XREF = Paths.get("xref");
	private static final Path XREFTEST = Paths.get("xref-test");

	private static final Set SKIPPED_FILENAMES = new HashSet<>(Arrays.asList(
			Paths.get("allclasses-frame.html"),
			Paths.get("index.html"),
			Paths.get("overview-frame.html"),
			Paths.get("overview-summary.html")));


	public XrefHtmlReferenceProcessor()
	{
		super(XREF, XREFTEST, "Source of");
	}


	@Override
	protected boolean skip(Document document)
	{
		return SKIPPED_FILENAMES.contains(document.file().getFileName());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy