blob: 2a2a1afaa9b1031dc8beffb9930f29bb9298c3e2 [file] [log] [blame]
package org.eclipse.jface.text;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Describes a region of an indexed text store such as document or string.
* The region consists of offset, length, and type. The type is defines as
* a string. A typed region can, e.g., be used to described document partitions.
* Clients may implement this interface or use the standard impementation
* <code>TypedRegion</code>.
*/
public interface ITypedRegion extends IRegion {
/**
* Returns the content type of the region.
*
* @return the content type of the region
*/
String getType();
}