Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Maetzel2004-06-21 20:37:43 +0000
committerKai Maetzel2004-06-21 20:37:43 +0000
commitd7d923a12e38970d37f5fca9a314b1195a7ad9d1 (patch)
treeaa98cc1358ec72582b50fd48a9809bbbf0fb5cfe /org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java
parent1ef22dafac7aae07178f67654ed1f3976b7db2e0 (diff)
downloadeclipse.platform.text-d7d923a12e38970d37f5fca9a314b1195a7ad9d1.tar.gz
eclipse.platform.text-d7d923a12e38970d37f5fca9a314b1195a7ad9d1.tar.xz
eclipse.platform.text-d7d923a12e38970d37f5fca9a314b1195a7ad9d1.zip
updated Javadoc
Diffstat (limited to 'org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java')
-rw-r--r--org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java21
1 files changed, 12 insertions, 9 deletions
diff --git a/org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java b/org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java
index a07d5664494..a0a89831945 100644
--- a/org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java
+++ b/org.eclipse.text/projection/org/eclipse/jface/text/projection/IMinimalMapping.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
@@ -10,40 +10,43 @@
*******************************************************************************/
package org.eclipse.jface.text.projection;
+
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IRegion;
+
/**
- * Internal interface. Do not use.
+ * Internal interface for defining the exact subset of
+ * {@link org.eclipse.jface.text.projection.ProjectionMapping}that the
+ * {@link org.eclipse.jface.text.projection.ProjectionTextStore}is allowed to
+ * access.
*
* @since 3.0
*/
interface IMinimalMapping {
/**
- * @return
+ * @see org.eclipse.jface.text.IDocumentInformationMapping#getCoverage()
*/
IRegion getCoverage();
/**
- * @param region
- * @return
+ * @see org.eclipse.jface.text.IDocumentInformationMapping#toOriginRegion(IRegion)
*/
IRegion toOriginRegion(IRegion region) throws BadLocationException;
/**
- * @param offset
- * @return
+ * @see org.eclipse.jface.text.IDocumentInformationMapping#toOriginOffset(int)
*/
int toOriginOffset(int offset) throws BadLocationException;
/**
- * @return
+ * @see org.eclipse.jface.text.IDocumentInformationMappingExtension#toExactOriginRegions(IRegion)
*/
IRegion[] toExactOriginRegions(IRegion region)throws BadLocationException;
/**
- * @return
+ * @see org.eclipse.jface.text.IDocumentInformationMappingExtension#getImageLength()
*/
int getImageLength();
}

Back to the top