Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[mylyn-dev] A quick question about Mylyn monitor

Hi Mylyn Developers,

Our group are currently working on implementing an eclipse plugin, which should be able to monitor every changes happened in Eclipse for the purpose of user study. Mylyn did something to record changes in perspective, windows and key stroke already, but it seems that Mylyn can't provide with more detailed information about those events happened on which file. 

For example, I added a perspective monitor(PerspectiveChangeMonitor), and the output log file looks like this:

<interactionEvent>
<kind>preference</kind>
<date>2010-08-20 03:26:52.582 EDT</date>
<endDate>2010-08-20 03:26:52.582 EDT</endDate>
<originId>org.eclipse.ui.DefaultTextEditor</originId>
<structureKind>null</structureKind>
<structureHandle>null</structureHandle>
<navigation>null</navigation>
<delta>perspective changed: editorOpen</delta>
<interestContribution>1.0</interestContribution>
</interactionEvent>
<interactionEvent>
<kind>preference</kind>
<date>2010-08-20 03:26:52.582 EDT</date>
<endDate>2010-08-20 03:26:52.582 EDT</endDate>
<originId>org.eclipse.jdt.ui.JavaPerspective</originId>
<structureKind>null</structureKind>
<structureHandle>null</structureHandle>
<navigation>null</navigation>
<delta>perspective changed: editorOpen</delta>
<interestContribution>1.0</interestContribution>
</interactionEvent>


It shows nothing about which specific file has opened. 
Any hints is appreciated!!

Thanks,
Yu

Back to the top