Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 73422 Details for
Bug 195644
Add security support to New Agent Controller
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
JVMTI.Client patch
jvmti_client.txt (text/plain), 2.70 KB, created by
Igor Alelekov
on 2007-07-10 10:34:33 EDT
(
hide
)
Description:
JVMTI.Client patch
Filename:
MIME Type:
Creator:
Igor Alelekov
Created:
2007-07-10 10:34:33 EDT
Size:
2.70 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.tptp.platform.jvmti.client >Index: src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/util/AgentControllerDelegate.java >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.tptp.platform.jvmti.client/src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/util/AgentControllerDelegate.java,v >retrieving revision 1.9 >diff -u -r1.9 AgentControllerDelegate.java >--- src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/util/AgentControllerDelegate.java 28 Jun 2007 17:18:39 -0000 1.9 >+++ src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/util/AgentControllerDelegate.java 9 Jul 2007 12:47:15 -0000 >@@ -10,13 +10,13 @@ > **********************************************************************/ > package org.eclipse.tptp.platform.jvmti.client.internal.launcher.util; > >+import org.eclipse.tptp.platform.common.ui.internal.util.ACConnectionPool; > import org.eclipse.tptp.platform.execution.client.agent.internal.AgentStatePool; > import org.eclipse.tptp.platform.execution.client.core.IAgentController; > import org.eclipse.tptp.platform.execution.client.core.IConsole; > import org.eclipse.tptp.platform.execution.client.core.IDataProcessor; > import org.eclipse.tptp.platform.execution.client.core.IProcess; > import org.eclipse.tptp.platform.execution.client.core.internal.IProcessListener; >-import org.eclipse.tptp.platform.execution.util.internal.AgentControllerPool; > import org.eclipse.tptp.platform.jvmti.client.internal.launcher.ILauncherParameterProvider; > > /** >@@ -41,14 +41,12 @@ > public static AgentControllerDelegate getInstance() { > return instance; > } >- >- public IAgentController getConnection(String hostName, int portNumber, >- boolean reuseExistingConnection) throws Exception { >- return AgentControllerPool.getInstance().getConnection(hostName, portNumber); >+ >+ public IAgentController getConnection(String hostName, int portNumber, boolean reuseExistingConnection) throws Exception { >+ return ACConnectionPool.getACConnection(hostName, portNumber, reuseExistingConnection); > } > >- public IAgentController getConnection(String hostName, int portNumber) >- throws Exception { >+ public IAgentController getConnection(String hostName, int portNumber) throws Exception { > return getConnection(hostName, portNumber, true); > } > >@@ -105,7 +103,7 @@ > String location) { > > try { >- IAgentController ac = AgentControllerPool.getInstance().getConnection(hostName, portNumber); >+ IAgentController ac = ACConnectionPool.getACConnection(hostName, portNumber); > > IProcess process = ac.createProcess(); > process.setExecutable("java.exe");
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 195644
:
73419
|
73421
|
73422
|
73423
|
73425
|
73429
|
77241
|
77242
|
77243
|
80051
|
80132
|
80870
|
84612
|
84631