当前位置: 首页>>代码示例>>Java>>正文


Java TextSearchMatchAccess.getFile方法代码示例

本文整理汇总了Java中org.eclipse.search.core.text.TextSearchMatchAccess.getFile方法的典型用法代码示例。如果您正苦于以下问题:Java TextSearchMatchAccess.getFile方法的具体用法?Java TextSearchMatchAccess.getFile怎么用?Java TextSearchMatchAccess.getFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.search.core.text.TextSearchMatchAccess的用法示例。


在下文中一共展示了TextSearchMatchAccess.getFile方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createRenameChangeForTestImplementation

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
public Change createRenameChangeForTestImplementation(IProgressMonitor pm) {
	IResource[] roots = { getProject() };
	String[] fileNamePatterns = new String[] { "*.java" };
	FileTextSearchScope scope = FileTextSearchScope.newSearchScope(roots, fileNamePatterns, false);
	IPath path = Helper.buildGeneratedAnnotationValue(getOriginalFile());
	Pattern pattern = Pattern.compile(Helper.getGeneratedAnnotationRegExp(path));
	List<Change> changes = new ArrayList<Change>();
	TextSearchRequestor collector = new TextSearchRequestor() {
		@Override
		public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
			IFile file = matchAccess.getFile();
			Change rename = new RenameCompilationUnitChange(getProject(),file.getFullPath(), getNewName(),CompilationUnitType.TEST_IMPLEMENTATION);
			changes.add(rename);
			return true;
		}
	};

	TextSearchEngine.create().search(scope, collector, pattern, pm);

	if (changes.isEmpty())
		return null;

	CompositeChange result = new CompositeChange("Rename GraphWalker Test Implementation(s)");
	Map<IPath,IPath> maps = new HashMap<IPath,IPath> ();
	for (Iterator<Change> iter = changes.iterator(); iter.hasNext();) {
		RenameCompilationUnitChange mc = (RenameCompilationUnitChange)iter.next();
		IPath mcPath = mc.getTargetFilePath();
		IPath p = maps.get(mcPath);
		if (p!=null) {
			String[] parts = mc.getNewName().split(Pattern.quote("."));
			String newValue = parts[0] + System.currentTimeMillis() + "." + parts[1];
			mc.setNewName(newValue);
		}
		maps.put(mc.getTargetFilePath(),mc.getTargetFilePath());
		result.add(mc);
	}

	return result;		
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:40,代码来源:RenameChange.java

示例2: createRenameChangeForTestInterface

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
public Change createRenameChangeForTestInterface(IProgressMonitor pm) {
	IResource[] roots = { getProject() };
	String[] fileNamePatterns = new String[] { "*.java" };
	FileTextSearchScope scope = FileTextSearchScope.newSearchScope(roots, fileNamePatterns, false);
	IPath path = Helper.buildModelAnnotationValue(originalFile);
	Pattern pattern = Pattern.compile(Helper.getModelAnnotationRegExp(path));
	List<Change> changes = new ArrayList<Change>();
	TextSearchRequestor collector = new TextSearchRequestor() {
		@Override
		public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
			IFile file = matchAccess.getFile();
			Change rename = new RenameCompilationUnitChange(getProject(),file.getFullPath(), getNewName(),CompilationUnitType.TEST_INTERFACE);
			changes.add(rename);
			return true;
		} 
	};

	TextSearchEngine.create().search(scope, collector, pattern, pm);

	if (changes.isEmpty())
		return null;

	CompositeChange result = new CompositeChange("Rename GraphWalker Test Interface(s)");
	Map<IPath,IPath> maps = new HashMap<IPath,IPath> ();
	for (Iterator<Change> iter = changes.iterator(); iter.hasNext();) {
		RenameCompilationUnitChange mc = (RenameCompilationUnitChange)iter.next();
		IPath p = maps.get(mc.getTargetFilePath());
		if (p!=null) {
			String[] parts = mc.getNewName().split(Pattern.quote("."));
			mc.setNewName(parts[0] + System.currentTimeMillis() + "." + parts[1]);
		}
		result.add(mc);
	}

	return result;
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:37,代码来源:RenameChange.java

示例3: createMoveChangeForTestImplementation

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
public Change createMoveChangeForTestImplementation(IProgressMonitor pm) {
	IResource[] roots = { originalFile.getProject() };
	String[] fileNamePatterns = new String[] { "*.java" };
	FileTextSearchScope scope = FileTextSearchScope.newSearchScope(roots, fileNamePatterns, false);
	IPath path = Helper.buildGeneratedAnnotationValue(originalFile);
	Pattern pattern = Pattern.compile(Helper.getGeneratedAnnotationRegExp(path));
	List<Change> changes = new ArrayList<Change>();
	TextSearchRequestor collector = new TextSearchRequestor() {
		@Override
		public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
			IFile file = matchAccess.getFile();
			MoveChange move = new MoveCompilationUnitChange(originalFile,file, destination,CompilationUnitType.TEST_IMPLEMENTATION);
			changes.add(move);
			return true;
		}
	};

	TextSearchEngine.create().search(scope, collector, pattern, pm);

	if (changes.isEmpty())
		return null;

	CompositeChange result = new CompositeChange("Move GraphWalker Test Implementation(s)");
	for (Iterator<Change> iter = changes.iterator(); iter.hasNext();) {
		Change mc = iter.next();
		result.add(mc);
	}

	return result;
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:31,代码来源:MoveChange.java

示例4: createMoveChangeForTestInterface

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
public Change createMoveChangeForTestInterface(IProgressMonitor pm) {
	IResource[] roots = { originalFile.getProject() };
	String[] fileNamePatterns = new String[] { "*.java" };
	FileTextSearchScope scope = FileTextSearchScope.newSearchScope(roots, fileNamePatterns, false);
	IPath path = Helper.buildModelAnnotationValue(originalFile);
	Pattern pattern = Pattern.compile(Helper.getModelAnnotationRegExp(path));
	List<Change> changes = new ArrayList<Change>();
	TextSearchRequestor collector = new TextSearchRequestor() {
		@Override
		public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
			IFile file = matchAccess.getFile();
			MoveChange move = new MoveCompilationUnitChange(originalFile,file, destination,CompilationUnitType.TEST_INTERFACE);
			changes.add(move);
			return true;
		}
	};

	TextSearchEngine.create().search(scope, collector, pattern, pm);

	if (changes.isEmpty())
		return null;

	CompositeChange result = new CompositeChange("Move GraphWalker Test Interface(s)");
	for (Iterator<Change> iter = changes.iterator(); iter.hasNext();) {
		Change mc = iter.next();
		result.add(mc);
	}

	return result;
}
 
开发者ID:gw4e,项目名称:gw4e.project,代码行数:31,代码来源:MoveChange.java

示例5: acceptPatternMatch

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
@Override
public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
  int start = matchAccess.getMatchOffset();
  int length = matchAccess.getMatchLength();

  // skip embedded FQNs (bug 130764):
  if (start > 0) {
    char before = matchAccess.getFileContentChar(start - 1);
    if (before == '.' || Character.isJavaIdentifierPart(before)) return true;
  }
  int fileContentLength = matchAccess.getFileContentLength();
  int end = start + length;
  if (end < fileContentLength) {
    char after = matchAccess.getFileContentChar(end);
    if (Character.isJavaIdentifierPart(after)) return true;
  }

  IFile file = matchAccess.getFile();
  TextChange change = fResult.getChange(file);
  TextChangeCompatibility.addTextEdit(
      change,
      RefactoringCoreMessages.QualifiedNameFinder_update_name,
      new ReplaceEdit(start, length, fNewValue),
      QUALIFIED_NAMES);

  return true;
}
 
开发者ID:eclipse,项目名称:che,代码行数:28,代码来源:QualifiedNameFinder.java

示例6: acceptPatternMatch

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
@Override
public boolean acceptPatternMatch(TextSearchMatchAccess matchAccess) throws CoreException {
	int start= matchAccess.getMatchOffset();
	int length= matchAccess.getMatchLength();

	// skip embedded FQNs (bug 130764):
	if (start > 0) {
		char before= matchAccess.getFileContentChar(start - 1);
		if (before == '.' || Character.isJavaIdentifierPart(before))
			return true;
	}
	int fileContentLength= matchAccess.getFileContentLength();
	int end= start + length;
	if (end < fileContentLength) {
		char after= matchAccess.getFileContentChar(end);
		if (Character.isJavaIdentifierPart(after))
			return true;
	}

	IFile file= matchAccess.getFile();
	TextChange change= fResult.getChange(file);
	TextChangeCompatibility.addTextEdit(
		change,
		RefactoringCoreMessages.QualifiedNameFinder_update_name,
		new ReplaceEdit(start, length, fNewValue), QUALIFIED_NAMES);

	return true;
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:29,代码来源:QualifiedNameFinder.java

示例7: acceptPatternMatch

import org.eclipse.search.core.text.TextSearchMatchAccess; //导入方法依赖的package包/类
@Override
public boolean acceptPatternMatch(TextSearchMatchAccess matchRequestor) throws CoreException {
  int matchOffset = matchRequestor.getMatchOffset();
  int matchLength = matchRequestor.getMatchLength();
  IFile file = matchRequestor.getFile();

  FileMatch fileMatch = new FileMatch(file, matchOffset, matchLength, expression);
  fCachedMatches.add(fileMatch);
  return true;
}
 
开发者ID:agusevas,项目名称:logan,代码行数:11,代码来源:PropertyFileSearchRequestor.java


注:本文中的org.eclipse.search.core.text.TextSearchMatchAccess.getFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。