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 85535 Details for
Bug 213384
logParser extension contributed by a plugin is not shown in import wizard
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]
Patch to fix this problem.
patch213384.txt (text/plain), 1.59 KB, created by
Dave Smith
on 2007-12-19 01:56:02 EST
(
hide
)
Description:
Patch to fix this problem.
Filename:
MIME Type:
Creator:
Dave Smith
Created:
2007-12-19 01:56:02 EST
Size:
1.59 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.tptp.monitoring.logui >Index: src/org/eclipse/tptp/monitoring/logui/internal/wizards/LogSetManager.java >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.tptp.monitoring.logui/src/org/eclipse/tptp/monitoring/logui/internal/wizards/LogSetManager.java,v >retrieving revision 1.14 >diff -u -r1.14 LogSetManager.java >--- src/org/eclipse/tptp/monitoring/logui/internal/wizards/LogSetManager.java 1 Jun 2007 19:59:28 -0000 1.14 >+++ src/org/eclipse/tptp/monitoring/logui/internal/wizards/LogSetManager.java 19 Dec 2007 06:50:37 -0000 >@@ -365,17 +365,27 @@ > > } > String parentId = elem.getAttribute("parentId"); >+ if (parentId == null || parentId.length() == 0) { >+ parentParserSets.add(parserSet); >+ parentId = null; >+ } >+ parserSet.setParentId(parentId); >+ parserSets.put(parserSet.getId(), parserSet); >+ } >+ >+ // Add the children of the parent parser sets >+ Iterator i = parserSets.keySet().iterator(); >+ while(i.hasNext()) { >+ String parserSetId = (String)i.next(); >+ LogParserSet parserSet = (LogParserSet)parserSets.get(parserSetId); >+ String parentId = parserSet.getParentId(); > if (parentId != null && parentId.length() > 0) { > LogParserSet parentSet = (LogParserSet) parserSets > .get(parentId); > if (parentSet != null) { > parentSet.getChildren().add(parserSet); > } >- }else{ >- parentParserSets.add(parserSet); > } >- parserSet.setParentId(parentId); >- parserSets.put(parserSet.getId(), parserSet); > } > > }
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 213384
:
85532
|
85533
| 85535 |
86757