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


Java IStreamsProxy类代码示例

本文整理汇总了Java中org.eclipse.debug.core.model.IStreamsProxy的典型用法代码示例。如果您正苦于以下问题:Java IStreamsProxy类的具体用法?Java IStreamsProxy怎么用?Java IStreamsProxy使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IStreamsProxy类属于org.eclipse.debug.core.model包,在下文中一共展示了IStreamsProxy类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
    return new IStreamsProxy() {
        @Override
        public void write(String input) throws IOException {
        }

        @Override
        public IStreamMonitor getErrorStreamMonitor() {
            return errorStream;
        }

        @Override
        public IStreamMonitor getOutputStreamMonitor() {
            return outputStream;
        }
    };
}
 
开发者ID:codenvy-legacy,项目名称:eclipse-plugin,代码行数:19,代码来源:CodenvyRunnerProcess.java

示例2: checkErrorMessage

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
/**
 * Checks and forwards an error from the specified process
 * 
 * @param process
 * @throws CoreException
 */
private void checkErrorMessage( IProcess process ) throws CoreException
{
	IStreamsProxy streamsProxy = process.getStreamsProxy( );
	if ( streamsProxy != null )
	{
		String errorMessage = streamsProxy.getErrorStreamMonitor( )
				.getContents( );
		if ( errorMessage.length( ) == 0 )
		{
			errorMessage = streamsProxy.getOutputStreamMonitor( )
					.getContents( );
		}
		if ( errorMessage.length( ) != 0 )
		{
			abort( errorMessage,
					null,
					IJavaLaunchConfigurationConstants.ERR_VM_LAUNCH_ERROR );
		}
	}
}
 
开发者ID:eclipse,项目名称:birt,代码行数:27,代码来源:StandardScriptVMRunner.java

示例3: checkErrorMessage

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
protected void checkErrorMessage(IProcess process) throws CoreException {
	IStreamsProxy streamsProxy = process.getStreamsProxy();
	if (streamsProxy != null) {
		String errorMessage = streamsProxy.getErrorStreamMonitor()
				.getContents();
		if (errorMessage.length() == 0) {
			errorMessage = streamsProxy.getOutputStreamMonitor()
					.getContents();
		}
		if (errorMessage.length() != 0) {
			abort(errorMessage, null,
					IJavaLaunchConfigurationConstants.ERR_VM_LAUNCH_ERROR);
		}
	}
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:16,代码来源:HyDebugVMRunner.java

示例4: createStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
protected IStreamsProxy createStreamsProxy() {
	return super.createStreamsProxy();
}
 
开发者ID:de-jcup,项目名称:egradle,代码行数:5,代码来源:EGradleRuntimeProcess.java

示例5: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
    return null;
}
 
开发者ID:GoogleCloudPlatform,项目名称:google-cloud-eclipse,代码行数:5,代码来源:SocketListenMultiConnectorProcess.java

示例6: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
	return null;
}
 
开发者ID:UrsZeidler,项目名称:uml2solidity,代码行数:5,代码来源:GenerateUml2Solidity.java

示例7: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
	return streamProxy;
}
 
开发者ID:turnus,项目名称:turnus,代码行数:5,代码来源:TurnusProcess.java

示例8: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
public IStreamsProxy getStreamsProxy() {
	return null;
}
 
开发者ID:tlaplus,项目名称:tlaplus,代码行数:4,代码来源:TLCModelLaunchDelegate.java

示例9: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
  return streamProxy;
}
 
开发者ID:monto-editor,项目名称:monto-eclipse,代码行数:5,代码来源:MontoProcess.java

示例10: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
	return this.proxy;
}
 
开发者ID:RichardBirenheide,项目名称:brainfuck,代码行数:5,代码来源:BfProcess.java

示例11: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
public IStreamsProxy getStreamsProxy() {
  return streamsProxy;
}
 
开发者ID:jbosstools,项目名称:chromedevtools,代码行数:4,代码来源:ConsolePseudoProcess.java

示例12: createStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
/**
 * PydevSpawnedInterpreterProcess handles the IO in a custom way, so we don't
 * use the streams proxy.
 */
@Override
protected IStreamsProxy createStreamsProxy() {
    // do nothing
    return null;
}
 
开发者ID:fabioz,项目名称:Pydev,代码行数:10,代码来源:PydevSpawnedInterpreterProcess.java

示例13: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
    return streamsProxy;
}
 
开发者ID:konsoletyper,项目名称:teavm,代码行数:5,代码来源:TeaVMDebugProcess.java

示例14: getStreamsProxy

import org.eclipse.debug.core.model.IStreamsProxy; //导入依赖的package包/类
@Override
public IStreamsProxy getStreamsProxy() {
	return streamsProxy;
}
 
开发者ID:tsvetan-stoyanov,项目名称:launchpi,代码行数:5,代码来源:RemoteProcess.java


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