|
Re: object interactions view not available [message #50142 is a reply to message #50083] |
Thu, 12 January 2006 17:25 |
Eclipse User |
|
|
|
Originally posted by: Navid_Mehregani_nmehrega.ca.ibm.com
This is a multipart message in MIME format.
--=_alternative 005FBB8E852570F4_=
Content-Type: text/plain; charset="US-ASCII"
This was a change made in the 4.1 driver. In your profiling set ->
select Execution time analysis -> Advanced -> Select Collect instance
level information -> try profiling now. You should now see the object
interaction view.
Navid Mehregani
--=_alternative 005FBB8E852570F4_=
Content-Type: text/html; charset="US-ASCII"
<br><font size=2 face="sans-serif">This was a change made in the
4.1 driver. In your profiling set -> select Execution time analysis
-> Advanced -> Select Collect instance level information -> try
profiling now. You should now see the object interaction view.</font>
<br>
<br><font size=2 face="sans-serif">Navid Mehregani</font>
--=_alternative 005FBB8E852570F4_=--
|
|
|
|
Re: object interactions view not available [message #50464 is a reply to message #50233] |
Fri, 13 January 2006 18:43 |
No real name Messages: 404 Registered: July 2009 |
Senior Member |
|
|
I tried to tinker around with the trace files generated by the Java
profiler. It seems that if the model detects an invalid object reference,
it will make the UI disable the object interaction view.
Can you make sure that your trace file generated by your plugin includes:
- <objAlloc events
- Reports objIdRef on threadStart, classDef, methodEntry, and methodExit
events. This attribute determines whether the references are correct or
not.
Can you also attach a trace file that your plugin generates before the
events are loaded to the loaders (i.e. a trace file similar to one that you
get when you set the "Send profiling data to a file" option under the
destination tab when profiling a Java application)
As an example, consider the following trace. This trace file doesn't
include the <objAlloc events but it does include objIdRef attributres:
<?xml version="1.0"?>
<TRACE>
<node nodeId="35c9d850-cb8f-4608-a943-c40c9767e04d" hostname="amehregani"
ipaddress="9.26.150.231,127.0.0.1" timezone="300"
time="1137109936.625000000"/>
<processCreate processId="d280c69b-0aea-4650-aba7-ce71ae5cbac2" pid="3640"
nodeIdRef="35c9d850-cb8f-4608-a943-c40c9767e04d"
time="1137109936.625000000"/>
<agentCreate agentId="b67d1048-9d21-44d7-bdce-257bc6ce22ea" version="1.000"
processIdRef="d280c69b-0aea-4650-aba7-ce71ae5cbac2" agentName="Java
Profiling Agent" agentType="Profiler" agentParameters="server=controlled"
time="1137109936.764999866"/>
<traceStart traceId="17abeaa0-5fb4-4e38-939e-2db6674746f2"
agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
time="1137109936.930803298"/>
<threadStart threadId="2" time="1137109936.938701152" threadName="main"
groupName="main" parentName="system" objIdRef="0"/>
<classDef threadIdRef="2" name="int" sourceName="" classId="5"
time="1137109936.946427106"/>
<runtimeInitDone threadIdRef="2" time="1137109936.968850612"/>
<classDef threadIdRef="4" name="java.lang.Class" sourceName="Class.java"
classId="89" time="1137109936.945830821"/>
<classDef threadIdRef="4" name="java.lang.Thread" sourceName="Thread.java"
classId="324" time="1137109936.947596311"/>
<threadStart threadId="4" time="1137109936.998217821" threadName="Signal
Dispatcher" groupName="system" parentName="" objIdRef="3850"/>
<classDef threadIdRef="2" name="MainClass" sourceName="MainClass.java"
classId="5576" time="1137109937.099534034"/>
<methodDef name="main" signature="([Ljava/lang/String;)V"
startLineNumber="20" endLineNumber="21" methodId="5574" classIdRef="5576"/>
<methodEntry threadIdRef="2" time="1137109937.099518775" methodIdRef="5574"
classIdRef="5576" ticket="5795" stackDepth="1"/>
<classDef threadIdRef="2" name="java.lang.ClassLoader"
sourceName="ClassLoader.java" classId="3975" time="1137109937.000886678"/>
<methodDef name="checkPackageAccess"
signature="(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V "
startLineNumber="306" endLineNumber="320" methodId="3965"
classIdRef="3975"/>
<classDef threadIdRef="2" name="sun.misc.Launcher$AppClassLoader"
sourceName="Launcher.java" classId="2441" objIdRef="2443"
time="1137109936.958760738"/>
<methodEntry threadIdRef="2" time="1137109937.099586486" methodIdRef="3965"
objIdRef="2443" classIdRef="3975" ticket="5796" stackDepth="2"/>
<methodExit threadIdRef="2" methodIdRef="3965" objIdRef="2443"
classIdRef="3975" ticket="0" time="1137109937.099647998"
overhead="0.000036774"/>
<methodExit threadIdRef="2" methodIdRef="5574" classIdRef="5576"
ticket="5795" time="1137109937.101277828" overhead="0.000083538"/>
<threadEnd threadIdRef="2" time="1137109937.101340532"/>
<threadStart threadId="5" time="1137109937.102098941"
threadName="DestroyJavaVM" groupName="main" parentName="system"
objIdRef="5668"/>
<threadEnd threadIdRef="5" time="1137109937.115652561"/>
<runtimeShutdown threadIdRef="1" time="1137109937.115679502"/>
<traceEnd time="1137109937.115683794"/>
<agentDestroy agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
time="1137109937.115689754"/>
</TRACE>
If you take out the objIdRef attribute of <methodEntry threadIdRef="2"
time="1137109937.099586486" methodIdRef="3965" objIdRef="2443"
classIdRef="3975" ticket="5796" stackDepth="2"/>, then the object references
will be broken and the menu item will be disabled.
Hope this helps.
"Holger Machens" <machens@informatik.fh-wiesbaden.de> wrote in message
news:dq66ob$otn$1@utils.eclipse.org...
>
> Navid_Mehregani_nmehrega@ca.ibm.com wrote:
>
> >This was a change made in the 4.1 driver. In your profiling set ->
> >select Execution time analysis -> Advanced -> Select Collect instance
> >level information -> try profiling now. You should now see the object
> >interaction view.
> >
> >Navid Mehregani
> >
> >
>
> Hi Navid,
>
> thanks for your help, but i already did it.
>
> More information:
> The context menu entry "object interactions" is visible but grayed
> (disabled).
>
> Any other ideas?
>
>
> Thanks
> Holger
>
|
|
|
Re: object interactions view not available [message #50688 is a reply to message #50464] |
Mon, 16 January 2006 15:38 |
Holger Machens Messages: 57 Registered: July 2009 |
Member |
|
|
Hi Ali,
thanks for your reply and for the time you spent in searching
the right answer, but you get me slightly wrong.
The file i gave you in my first post is not the data send by
the agent - it's the data stored in workspace
(ok, indirectly it's send by the agent ;) ).
You can look at it's contents by using the command:
> jar xf <filename>
I already looked for dangling references but i didn't find
one.
Maybe one can tell me, which integrity checks are done
when the viewer plugin starts up or which decisions lead
to the grayed context menu entry "object interactions".
Thanks
Holger
Ali Mehregani wrote:
>I tried to tinker around with the trace files generated by the Java
>profiler. It seems that if the model detects an invalid object reference,
>it will make the UI disable the object interaction view.
>
>Can you make sure that your trace file generated by your plugin includes:
>- <objAlloc events
>- Reports objIdRef on threadStart, classDef, methodEntry, and methodExit
>events. This attribute determines whether the references are correct or
>not.
>
>Can you also attach a trace file that your plugin generates before the
>events are loaded to the loaders (i.e. a trace file similar to one that you
>get when you set the "Send profiling data to a file" option under the
>destination tab when profiling a Java application)
>
>As an example, consider the following trace. This trace file doesn't
>include the <objAlloc events but it does include objIdRef attributres:
>
><?xml version="1.0"?>
><TRACE>
><node nodeId="35c9d850-cb8f-4608-a943-c40c9767e04d" hostname="amehregani"
>ipaddress="9.26.150.231,127.0.0.1" timezone="300"
>time="1137109936.625000000"/>
><processCreate processId="d280c69b-0aea-4650-aba7-ce71ae5cbac2" pid="3640"
>nodeIdRef="35c9d850-cb8f-4608-a943-c40c9767e04d"
>time="1137109936.625000000"/>
><agentCreate agentId="b67d1048-9d21-44d7-bdce-257bc6ce22ea" version="1.000"
>processIdRef="d280c69b-0aea-4650-aba7-ce71ae5cbac2" agentName="Java
>Profiling Agent" agentType="Profiler" agentParameters="server=controlled"
>time="1137109936.764999866"/>
><traceStart traceId="17abeaa0-5fb4-4e38-939e-2db6674746f2"
>agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
>time="1137109936.930803298"/>
><threadStart threadId="2" time="1137109936.938701152" threadName="main"
>groupName="main" parentName="system" objIdRef="0"/>
><classDef threadIdRef="2" name="int" sourceName="" classId="5"
>time="1137109936.946427106"/>
><runtimeInitDone threadIdRef="2" time="1137109936.968850612"/>
><classDef threadIdRef="4" name="java.lang.Class" sourceName="Class.java"
>classId="89" time="1137109936.945830821"/>
><classDef threadIdRef="4" name="java.lang.Thread" sourceName="Thread.java"
>classId="324" time="1137109936.947596311"/>
><threadStart threadId="4" time="1137109936.998217821" threadName="Signal
>Dispatcher" groupName="system" parentName="" objIdRef="3850"/>
><classDef threadIdRef="2" name="MainClass" sourceName="MainClass.java"
>classId="5576" time="1137109937.099534034"/>
><methodDef name="main" signature="([Ljava/lang/String;)V"
>startLineNumber="20" endLineNumber="21" methodId="5574" classIdRef="5576"/>
><methodEntry threadIdRef="2" time="1137109937.099518775" methodIdRef="5574"
>classIdRef="5576" ticket="5795" stackDepth="1"/>
><classDef threadIdRef="2" name="java.lang.ClassLoader"
>sourceName="ClassLoader.java" classId="3975" time="1137109937.000886678"/>
><methodDef name="checkPackageAccess"
>signature="(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V "
>startLineNumber="306" endLineNumber="320" methodId="3965"
>classIdRef="3975"/>
><classDef threadIdRef="2" name="sun.misc.Launcher$AppClassLoader"
>sourceName="Launcher.java" classId="2441" objIdRef="2443"
>time="1137109936.958760738"/>
><methodEntry threadIdRef="2" time="1137109937.099586486" methodIdRef="3965"
>objIdRef="2443" classIdRef="3975" ticket="5796" stackDepth="2"/>
><methodExit threadIdRef="2" methodIdRef="3965" objIdRef="2443"
>classIdRef="3975" ticket="0" time="1137109937.099647998"
>overhead="0.000036774"/>
><methodExit threadIdRef="2" methodIdRef="5574" classIdRef="5576"
>ticket="5795" time="1137109937.101277828" overhead="0.000083538"/>
><threadEnd threadIdRef="2" time="1137109937.101340532"/>
><threadStart threadId="5" time="1137109937.102098941"
>threadName="DestroyJavaVM" groupName="main" parentName="system"
>objIdRef="5668"/>
><threadEnd threadIdRef="5" time="1137109937.115652561"/>
><runtimeShutdown threadIdRef="1" time="1137109937.115679502"/>
><traceEnd time="1137109937.115683794"/>
><agentDestroy agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
>time="1137109937.115689754"/>
></TRACE>
>
>
>If you take out the objIdRef attribute of <methodEntry threadIdRef="2"
>time="1137109937.099586486" methodIdRef="3965" objIdRef="2443"
>classIdRef="3975" ticket="5796" stackDepth="2"/>, then the object references
>will be broken and the menu item will be disabled.
>
>Hope this helps.
>
>
>"Holger Machens" <machens@informatik.fh-wiesbaden.de> wrote in message
>news:dq66ob$otn$1@utils.eclipse.org...
>
>
>>Navid_Mehregani_nmehrega@ca.ibm.com wrote:
>>
>>
>>
>>>This was a change made in the 4.1 driver. In your profiling set ->
>>>select Execution time analysis -> Advanced -> Select Collect instance
>>>level information -> try profiling now. You should now see the object
>>>interaction view.
>>>
>>>Navid Mehregani
>>>
>>>
>>>
>>>
>>Hi Navid,
>>
>>thanks for your help, but i already did it.
>>
>>More information:
>>The context menu entry "object interactions" is visible but grayed
>>(disabled).
>>
>>Any other ideas?
>>
>>
>>Thanks
>> Holger
>>
>>
>>
>
>
>
>
|
|
|
Re: object interactions view not available [message #55834 is a reply to message #50688] |
Wed, 01 March 2006 09:52 |
Holger Machens Messages: 57 Registered: July 2009 |
Member |
|
|
?
Holger Machens wrote:
> Hi Ali,
>
>
> thanks for your reply and for the time you spent in searching
> the right answer, but you get me slightly wrong.
>
> The file i gave you in my first post is not the data send by
> the agent - it's the data stored in workspace
> (ok, indirectly it's send by the agent ;) ).
>
> You can look at it's contents by using the command:
>
>>jar xf <filename>
>
>
> I already looked for dangling references but i didn't find
> one.
>
>
> Maybe one can tell me, which integrity checks are done
> when the viewer plugin starts up or which decisions lead
> to the grayed context menu entry "object interactions".
>
>
> Thanks
> Holger
>
>
> Ali Mehregani wrote:
>
>
>>I tried to tinker around with the trace files generated by the Java
>>profiler. It seems that if the model detects an invalid object reference,
>>it will make the UI disable the object interaction view.
>>
>>Can you make sure that your trace file generated by your plugin includes:
>>- <objAlloc events
>>- Reports objIdRef on threadStart, classDef, methodEntry, and methodExit
>>events. This attribute determines whether the references are correct or
>>not.
>>
>>Can you also attach a trace file that your plugin generates before the
>>events are loaded to the loaders (i.e. a trace file similar to one that you
>>get when you set the "Send profiling data to a file" option under the
>>destination tab when profiling a Java application)
>>
>>As an example, consider the following trace. This trace file doesn't
>>include the <objAlloc events but it does include objIdRef attributres:
>>
>><?xml version="1.0"?>
>><TRACE>
>><node nodeId="35c9d850-cb8f-4608-a943-c40c9767e04d" hostname="amehregani"
>>ipaddress="9.26.150.231,127.0.0.1" timezone="300"
>>time="1137109936.625000000"/>
>><processCreate processId="d280c69b-0aea-4650-aba7-ce71ae5cbac2" pid="3640"
>>nodeIdRef="35c9d850-cb8f-4608-a943-c40c9767e04d"
>>time="1137109936.625000000"/>
>><agentCreate agentId="b67d1048-9d21-44d7-bdce-257bc6ce22ea" version="1.000"
>>processIdRef="d280c69b-0aea-4650-aba7-ce71ae5cbac2" agentName="Java
>>Profiling Agent" agentType="Profiler" agentParameters="server=controlled"
>>time="1137109936.764999866"/>
>><traceStart traceId="17abeaa0-5fb4-4e38-939e-2db6674746f2"
>>agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
>>time="1137109936.930803298"/>
>><threadStart threadId="2" time="1137109936.938701152" threadName="main"
>>groupName="main" parentName="system" objIdRef="0"/>
>><classDef threadIdRef="2" name="int" sourceName="" classId="5"
>>time="1137109936.946427106"/>
>><runtimeInitDone threadIdRef="2" time="1137109936.968850612"/>
>><classDef threadIdRef="4" name="java.lang.Class" sourceName="Class.java"
>>classId="89" time="1137109936.945830821"/>
>><classDef threadIdRef="4" name="java.lang.Thread" sourceName="Thread.java"
>>classId="324" time="1137109936.947596311"/>
>><threadStart threadId="4" time="1137109936.998217821" threadName="Signal
>>Dispatcher" groupName="system" parentName="" objIdRef="3850"/>
>><classDef threadIdRef="2" name="MainClass" sourceName="MainClass.java"
>>classId="5576" time="1137109937.099534034"/>
>><methodDef name="main" signature="([Ljava/lang/String;)V"
>>startLineNumber="20" endLineNumber="21" methodId="5574" classIdRef="5576"/>
>><methodEntry threadIdRef="2" time="1137109937.099518775" methodIdRef="5574"
>>classIdRef="5576" ticket="5795" stackDepth="1"/>
>><classDef threadIdRef="2" name="java.lang.ClassLoader"
>>sourceName="ClassLoader.java" classId="3975" time="1137109937.000886678"/>
>><methodDef name="checkPackageAccess"
>>signature="(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V "
>>startLineNumber="306" endLineNumber="320" methodId="3965"
>>classIdRef="3975"/>
>><classDef threadIdRef="2" name="sun.misc.Launcher$AppClassLoader"
>>sourceName="Launcher.java" classId="2441" objIdRef="2443"
>>time="1137109936.958760738"/>
>><methodEntry threadIdRef="2" time="1137109937.099586486" methodIdRef="3965"
>>objIdRef="2443" classIdRef="3975" ticket="5796" stackDepth="2"/>
>><methodExit threadIdRef="2" methodIdRef="3965" objIdRef="2443"
>>classIdRef="3975" ticket="0" time="1137109937.099647998"
>>overhead="0.000036774"/>
>><methodExit threadIdRef="2" methodIdRef="5574" classIdRef="5576"
>>ticket="5795" time="1137109937.101277828" overhead="0.000083538"/>
>><threadEnd threadIdRef="2" time="1137109937.101340532"/>
>><threadStart threadId="5" time="1137109937.102098941"
>>threadName="DestroyJavaVM" groupName="main" parentName="system"
>>objIdRef="5668"/>
>><threadEnd threadIdRef="5" time="1137109937.115652561"/>
>><runtimeShutdown threadIdRef="1" time="1137109937.115679502"/>
>><traceEnd time="1137109937.115683794"/>
>><agentDestroy agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
>>time="1137109937.115689754"/>
>></TRACE>
>>
>>
>>If you take out the objIdRef attribute of <methodEntry threadIdRef="2"
>>time="1137109937.099586486" methodIdRef="3965" objIdRef="2443"
>>classIdRef="3975" ticket="5796" stackDepth="2"/>, then the object references
>>will be broken and the menu item will be disabled.
>>
>>Hope this helps.
>>
>>
>>"Holger Machens" <machens@informatik.fh-wiesbaden.de> wrote in message
>>news:dq66ob$otn$1@utils.eclipse.org...
>>
>>
>>
>>>Navid_Mehregani_nmehrega@ca.ibm.com wrote:
>>>
>>>
>>>
>>>
>>>>This was a change made in the 4.1 driver. In your profiling set ->
>>>>select Execution time analysis -> Advanced -> Select Collect instance
>>>>level information -> try profiling now. You should now see the object
>>>>interaction view.
>>>>
>>>>Navid Mehregani
>>>>
>>>>
>>>>
>>>>
>>>
>>>Hi Navid,
>>>
>>>thanks for your help, but i already did it.
>>>
>>>More information:
>>>The context menu entry "object interactions" is visible but grayed
>>>(disabled).
>>>
>>>Any other ideas?
>>>
>>>
>>>Thanks
>>>Holger
>>>
>>>
>>>
>>
>>
>>
>>
|
|
|
Re: object interactions view not available [message #56206 is a reply to message #55834] |
Thu, 02 March 2006 16:48 |
No real name Messages: 404 Registered: July 2009 |
Senior Member |
|
|
Marius, do you know the answer to this?
Do the models expect something to be true for the object interactions to be
enabled?
"Holger Machens" <machens@informatik.fh-wiesbaden.de> wrote in message
news:du3qsg$qsh$1@utils.eclipse.org...
> ?
>
> Holger Machens wrote:
> > Hi Ali,
> >
> >
> > thanks for your reply and for the time you spent in searching
> > the right answer, but you get me slightly wrong.
> >
> > The file i gave you in my first post is not the data send by
> > the agent - it's the data stored in workspace
> > (ok, indirectly it's send by the agent ;) ).
> >
> > You can look at it's contents by using the command:
> >
> >>jar xf <filename>
> >
> >
> > I already looked for dangling references but i didn't find
> > one.
> >
> >
> > Maybe one can tell me, which integrity checks are done
> > when the viewer plugin starts up or which decisions lead
> > to the grayed context menu entry "object interactions".
> >
> >
> > Thanks
> > Holger
> >
> >
> > Ali Mehregani wrote:
> >
> >
> >>I tried to tinker around with the trace files generated by the Java
> >>profiler. It seems that if the model detects an invalid object
reference,
> >>it will make the UI disable the object interaction view.
> >>
> >>Can you make sure that your trace file generated by your plugin
includes:
> >>- <objAlloc events
> >>- Reports objIdRef on threadStart, classDef, methodEntry, and methodExit
> >>events. This attribute determines whether the references are correct or
> >>not.
> >>
> >>Can you also attach a trace file that your plugin generates before the
> >>events are loaded to the loaders (i.e. a trace file similar to one that
you
> >>get when you set the "Send profiling data to a file" option under the
> >>destination tab when profiling a Java application)
> >>
> >>As an example, consider the following trace. This trace file doesn't
> >>include the <objAlloc events but it does include objIdRef attributres:
> >>
> >><?xml version="1.0"?>
> >><TRACE>
> >><node nodeId="35c9d850-cb8f-4608-a943-c40c9767e04d"
hostname="amehregani"
> >>ipaddress="9.26.150.231,127.0.0.1" timezone="300"
> >>time="1137109936.625000000"/>
> >><processCreate processId="d280c69b-0aea-4650-aba7-ce71ae5cbac2"
pid="3640"
> >>nodeIdRef="35c9d850-cb8f-4608-a943-c40c9767e04d"
> >>time="1137109936.625000000"/>
> >><agentCreate agentId="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
version="1.000"
> >>processIdRef="d280c69b-0aea-4650-aba7-ce71ae5cbac2" agentName="Java
> >>Profiling Agent" agentType="Profiler"
agentParameters="server=controlled"
> >>time="1137109936.764999866"/>
> >><traceStart traceId="17abeaa0-5fb4-4e38-939e-2db6674746f2"
> >>agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
> >>time="1137109936.930803298"/>
> >><threadStart threadId="2" time="1137109936.938701152" threadName="main"
> >>groupName="main" parentName="system" objIdRef="0"/>
> >><classDef threadIdRef="2" name="int" sourceName="" classId="5"
> >>time="1137109936.946427106"/>
> >><runtimeInitDone threadIdRef="2" time="1137109936.968850612"/>
> >><classDef threadIdRef="4" name="java.lang.Class" sourceName="Class.java"
> >>classId="89" time="1137109936.945830821"/>
> >><classDef threadIdRef="4" name="java.lang.Thread"
sourceName="Thread.java"
> >>classId="324" time="1137109936.947596311"/>
> >><threadStart threadId="4" time="1137109936.998217821" threadName="Signal
> >>Dispatcher" groupName="system" parentName="" objIdRef="3850"/>
> >><classDef threadIdRef="2" name="MainClass" sourceName="MainClass.java"
> >>classId="5576" time="1137109937.099534034"/>
> >><methodDef name="main" signature="([Ljava/lang/String;)V"
> >>startLineNumber="20" endLineNumber="21" methodId="5574"
classIdRef="5576"/>
> >><methodEntry threadIdRef="2" time="1137109937.099518775"
methodIdRef="5574"
> >>classIdRef="5576" ticket="5795" stackDepth="1"/>
> >><classDef threadIdRef="2" name="java.lang.ClassLoader"
> >>sourceName="ClassLoader.java" classId="3975"
time="1137109937.000886678"/>
> >><methodDef name="checkPackageAccess"
> >>signature="(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V "
> >>startLineNumber="306" endLineNumber="320" methodId="3965"
> >>classIdRef="3975"/>
> >><classDef threadIdRef="2" name="sun.misc.Launcher$AppClassLoader"
> >>sourceName="Launcher.java" classId="2441" objIdRef="2443"
> >>time="1137109936.958760738"/>
> >><methodEntry threadIdRef="2" time="1137109937.099586486"
methodIdRef="3965"
> >>objIdRef="2443" classIdRef="3975" ticket="5796" stackDepth="2"/>
> >><methodExit threadIdRef="2" methodIdRef="3965" objIdRef="2443"
> >>classIdRef="3975" ticket="0" time="1137109937.099647998"
> >>overhead="0.000036774"/>
> >><methodExit threadIdRef="2" methodIdRef="5574" classIdRef="5576"
> >>ticket="5795" time="1137109937.101277828" overhead="0.000083538"/>
> >><threadEnd threadIdRef="2" time="1137109937.101340532"/>
> >><threadStart threadId="5" time="1137109937.102098941"
> >>threadName="DestroyJavaVM" groupName="main" parentName="system"
> >>objIdRef="5668"/>
> >><threadEnd threadIdRef="5" time="1137109937.115652561"/>
> >><runtimeShutdown threadIdRef="1" time="1137109937.115679502"/>
> >><traceEnd time="1137109937.115683794"/>
> >><agentDestroy agentIdRef="b67d1048-9d21-44d7-bdce-257bc6ce22ea"
> >>time="1137109937.115689754"/>
> >></TRACE>
> >>
> >>
> >>If you take out the objIdRef attribute of <methodEntry threadIdRef="2"
> >>time="1137109937.099586486" methodIdRef="3965" objIdRef="2443"
> >>classIdRef="3975" ticket="5796" stackDepth="2"/>, then the object
references
> >>will be broken and the menu item will be disabled.
> >>
> >>Hope this helps.
> >>
> >>
> >>"Holger Machens" <machens@informatik.fh-wiesbaden.de> wrote in message
> >>news:dq66ob$otn$1@utils.eclipse.org...
> >>
> >>
> >>
> >>>Navid_Mehregani_nmehrega@ca.ibm.com wrote:
> >>>
> >>>
> >>>
> >>>
> >>>>This was a change made in the 4.1 driver. In your profiling set ->
> >>>>select Execution time analysis -> Advanced -> Select Collect instance
> >>>>level information -> try profiling now. You should now see the object
> >>>>interaction view.
> >>>>
> >>>>Navid Mehregani
> >>>>
> >>>>
> >>>>
> >>>>
> >>>
> >>>Hi Navid,
> >>>
> >>>thanks for your help, but i already did it.
> >>>
> >>>More information:
> >>>The context menu entry "object interactions" is visible but grayed
> >>>(disabled).
> >>>
> >>>Any other ideas?
> >>>
> >>>
> >>>Thanks
> >>>Holger
> >>>
> >>>
> >>>
> >>
> >>
> >>
> >>
|
|
|
|
Powered by
FUDForum. Page generated in 0.04062 seconds