This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 178233 - Syntax Errors annotating doesn't work for fxd placed into fxz archive
Summary: Syntax Errors annotating doesn't work for fxd placed into fxz archive
Status: RESOLVED FIXED
Alias: None
Product: javafx
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 normal (vote)
Assignee: Andrew Korostelev
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-07 05:48 UTC by Andrew Korostelev
Modified: 2010-04-06 16:39 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Korostelev 2009-12-07 05:48:42 UTC
Syntax Errors annotating works for standalone fxd file only.
And doesn't work for fxd placed into fxz archive.
Comment 1 Andrew Korostelev 2010-03-16 16:55:12 UTC
Problem caused by org.netbeans.modules.editor.hints.HintsControllerImpl#linePart
 (in spi.editor.hints module) which requires EditorCookie retrieved from
 DataObject to be instanceof CloneableEditorSupport.

Which is not true for fxz, where EditorCookie is implemented by
 FXZDataObject.CommonCookie to wrap different entries and use
 CloneableEditorSupport for selected entry.
Comment 2 Andrew Korostelev 2010-03-19 15:56:17 UTC
fixed in 3652:956112f1b5c2
Comment 3 Andrew Korostelev 2010-03-30 10:17:34 UTC
rollback fix that has caused a regression, because regression was more important then this issue.
http://hg.netbeans.org/javafx/rev/61411f2560ae
Comment 4 Andrew Korostelev 2010-04-06 16:39:14 UTC
http://hg.netbeans.org/javafx/rev/f9b60e9b344d

after issue 183588 is fixed, this fix works well.