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


Java IFileState.getContents方法代码示例

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


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

示例1: getOldEdk2Module

import org.eclipse.core.resources.IFileState; //导入方法依赖的package包/类
private static Edk2Module getOldEdk2Module(IResource resource, String workspacePath)
		throws CoreException, FileNotFoundException, IOException {
	Edk2Module oldModule = null;
	IFile infFile = (IFile) resource;
	IFileState[] states = infFile.getHistory(null);
	
	if(states != null && states.length > 0) {
		IFileState lastState = states[0];
		oldModule = new Edk2Module(resource.getLocation().toString(), workspacePath, lastState.getContents());
	}
	
	return oldModule;
}
 
开发者ID:ffmmjj,项目名称:uefi_edk2_wizards_plugin,代码行数:14,代码来源:Edk2ModuleObservablesManager.java

示例2: recordStateFromHistory

import org.eclipse.core.resources.IFileState; //导入方法依赖的package包/类
public void recordStateFromHistory(IResource resource, IProgressMonitor monitor)
    throws CoreException {
  Assert.isLegal(resource.getType() == IResource.FILE);

  if (location != null) {
    // file is linked, no need to record any history
    return;
  }
  IFileState[] states = ((IFile) resource).getHistory(monitor);
  if (states.length > 0) {
    final IFileState state = getMatchingFileState(states);
    this.fileContentDescription =
        new IFileContentDescription() {
          /*
           * (non-Javadoc)
           *
           * @see org.eclipse.ui.internal.ide.undo.IFileContentDescription#exists()
           */
          public boolean exists() {
            return state.exists();
          }

          /*
           * (non-Javadoc)
           *
           * @see org.eclipse.ui.internal.ide.undo.IFileContentDescription#getContents()
           */
          public InputStream getContents() throws CoreException {
            return state.getContents();
          }

          /*
           * (non-Javadoc)
           *
           * @see org.eclipse.ui.internal.ide.undo.IFileContentDescription#getCharset()
           */
          public String getCharset() throws CoreException {
            return state.getCharset();
          }
        };
  }
}
 
开发者ID:eclipse,项目名称:che,代码行数:43,代码来源:FileDescription.java


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