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

org.eclipse.jface.text.IDocumentInformationMappingExtension Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 *
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.text;

/**
 * Extension to {@link org.eclipse.jface.text.IDocumentInformationMapping}.
 * 

* Extends the information available in the mapping by providing explicit access * to the isomorphic portion of the basically homomorphic information mapping. * * @see org.eclipse.jface.text.IDocumentInformationMapping * @since 3.0 */ public interface IDocumentInformationMappingExtension { /** * Adheres to * originRegion=toOriginRegion(toExactImageRegion(originRegion)), * if toExactImageRegion(originRegion) != null. Returns * null if there is no image for the given origin region. * * @param originRegion the origin region * @return the exact image region or null * @throws BadLocationException if origin region is not a valid region in * the origin document */ IRegion toExactImageRegion(IRegion originRegion) throws BadLocationException; /** * Returns the segments of the image document that exactly correspond to the * given region of the original document. Returns null if * there are no such image regions. * * @param originRegion the region in the origin document * @return the segments in the image document or null * @throws BadLocationException in case the given origin region is not valid * in the original document */ IRegion[] toExactImageRegions(IRegion originRegion) throws BadLocationException; /** * Returns the fragments of the original document that exactly correspond to * the given region of the image document. * * @param imageRegion the region in the image document * @return the fragments in the origin document * @throws BadLocationException in case the given image region is not valid * in the image document */ IRegion[] toExactOriginRegions(IRegion imageRegion) throws BadLocationException; /** * Returns the length of the image document. * * @return the length of the image document */ int getImageLength(); /** * Returns the maximal sub-regions of the given origin region which are * completely covered. I.e. each offset in a sub-region has a corresponding * image offset. Returns null if there are no such * sub-regions. * * @param originRegion the region in the origin document * @return the sub-regions with complete coverage or null * @throws BadLocationException in case the given origin region is not valid * in the original document */ IRegion[] getExactCoverage(IRegion originRegion) throws BadLocationException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy