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


Java IClassFile.getSource方法代码示例

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


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

示例1: run

import org.eclipse.jdt.core.IClassFile; //导入方法依赖的package包/类
/**
 * Runs the stub generation on the specified class file.
 *
 * @param file
 *            the class file
 * @param parent
 *            the parent store
 * @param monitor
 *            the progress monitor to use
 * @throws CoreException
 *             if an error occurs
 */
@Override
protected void run(final IClassFile file, final IFileStore parent, final IProgressMonitor monitor) throws CoreException {
	try {
		monitor.beginTask(getOperationLabel(), 2);
		final IType type= file.getType();
		if (type.isAnonymous() || type.isLocal() || type.isMember())
			return;
		final String source= file.getSource();
		createCompilationUnit(parent, type.getElementName() + JavaModelUtil.DEFAULT_CU_SUFFIX, source != null ? source : "", monitor); //$NON-NLS-1$
	} finally {
		monitor.done();
	}
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:26,代码来源:SourceCreationOperation.java

示例2: setDocumentContent

import org.eclipse.jdt.core.IClassFile; //导入方法依赖的package包/类
@Override
protected boolean setDocumentContent(IDocument document, IEditorInput editorInput, String encoding) throws CoreException {
	if (editorInput instanceof IClassFileEditorInput) {
		IClassFile classFile= ((IClassFileEditorInput) editorInput).getClassFile();
		String source= classFile.getSource();
		if (source == null)
			source= ""; //$NON-NLS-1$
		document.set(source);
		return true;
	}
	return super.setDocumentContent(document, editorInput, encoding);
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:13,代码来源:ClassFileDocumentProvider.java

示例3: compare

import org.eclipse.jdt.core.IClassFile; //导入方法依赖的package包/类
@Override
public int compare(Viewer viewer, Object e1, Object e2) {
	if (!(e1 instanceof ISourceReference))
		return 0;
	if (!(e2 instanceof ISourceReference))
		return 0;

	IJavaElement parent1= ((IJavaElement)e1).getParent();
	if (parent1 == null || !parent1.equals(((IJavaElement)e2).getParent())) {
			IType t1= getOutermostDeclaringType(e1);
			if (t1 == null)
				return 0;

			IType t2= getOutermostDeclaringType(e2);
			try {
				if (!t1.equals(t2)) {
					if (t2 == null)
						return 0;

					if (Flags.isPublic(t1.getFlags()) && Flags.isPublic(t2.getFlags()))
						return 0;

					if (!t1.getPackageFragment().equals(t2.getPackageFragment()))
						return 0;

					ICompilationUnit cu1= (ICompilationUnit)((IJavaElement)e1).getAncestor(IJavaElement.COMPILATION_UNIT);
					if (cu1 != null) {
						if (!cu1.equals(((IJavaElement)e2).getAncestor(IJavaElement.COMPILATION_UNIT)))
							return 0;
					} else {
						IClassFile cf1= (IClassFile)((IJavaElement)e1).getAncestor(IJavaElement.CLASS_FILE);
						if (cf1 == null)
							return 0;
						IClassFile cf2= (IClassFile)((IJavaElement)e2).getAncestor(IJavaElement.CLASS_FILE);
						String source1= cf1.getSource();
						if (source1 != null && !source1.equals(cf2.getSource()))
							return 0;
					}
				}
			} catch (JavaModelException e3) {
				return 0;
			}
	}

	try {
		ISourceRange sr1= ((ISourceReference)e1).getSourceRange();
		ISourceRange sr2= ((ISourceReference)e2).getSourceRange();
		if (sr1 == null || sr2 == null)
			return 0;

		return sr1.getOffset() - sr2.getOffset();

	} catch (JavaModelException e) {
		return 0;
	}
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:57,代码来源:SourcePositionComparator.java


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