mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
Merge "[xbase][editor] Copy/Paste not only the text but also imports"
This commit is contained in:
commit
24ff1ee0fb
1 changed files with 12 additions and 3 deletions
|
@ -27,11 +27,20 @@ import com.google.inject.ImplementedBy;
|
|||
@ImplementedBy(DefaultLocationInFileProvider.class)
|
||||
public interface ILocationInFileProvider {
|
||||
|
||||
/**
|
||||
* @see org.eclipse.xtext.resource.ILocationInFileProviderExtension.RegionDescription#SIGNIFICANT
|
||||
*/
|
||||
ITextRegion getSignificantTextRegion(EObject obj);
|
||||
|
||||
/**
|
||||
* @see org.eclipse.xtext.resource.ILocationInFileProviderExtension.RegionDescription#SIGNIFICANT
|
||||
*/
|
||||
ITextRegion getSignificantTextRegion(EObject owner, EStructuralFeature feature, int indexInList);
|
||||
|
||||
/**
|
||||
* @see org.eclipse.xtext.resource.ILocationInFileProviderExtension.RegionDescription#FULL
|
||||
*/
|
||||
ITextRegion getFullTextRegion(EObject obj);
|
||||
|
||||
/**
|
||||
* @see org.eclipse.xtext.resource.ILocationInFileProviderExtension.RegionDescription#FULL
|
||||
*/
|
||||
ITextRegion getFullTextRegion(EObject owner, EStructuralFeature feature, int indexInList);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue