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 132628 - Request for methods in JavaFX Source
Summary: Request for methods in JavaFX Source
Status: VERIFIED FIXED
Alias: None
Product: javafx
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P1 blocker (vote)
Assignee: David Strupl
URL:
Keywords:
Depends on: 132748 132750 132751 132754
Blocks:
  Show dependency tree
 
Reported: 2008-04-11 14:58 UTC by Alexey Butenko
Modified: 2008-10-09 09:51 UTC (History)
0 users

See Also:
Issue Type: TASK
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexey Butenko 2008-04-11 14:58:39 UTC
I need following methods to be implemented in JavaFX Source, it is needed for parsing Expressions during debug session:
in TreeUtilities:
    public ExpressionTree parseExpression(String expr, SourcePositions[] sourcePositions)
    public TypeMirror attributeTree(Tree tree, Scope scope)
in CompilatioInfo:
    public Document getDocument()
in ClassPathInfo:
    public static ClasspathInfo create(ClassPath bootPath, ClassPath classPath, ClassPath sourcePath)
Comment 1 David Strupl 2008-04-14 13:22:34 UTC
Hello,

I have created 4 separate issues (one for each method) - they might get implemented by different people.

Br,

David

PS.: Please make your issues blocked either by this one or by the individual issues that this one depends on ...
Comment 2 Martin Ryzl 2008-06-03 09:37:55 UTC
we are evaluating importance of this feature. Could the reporter specify what issue is blocked by this issue, please?
Comment 3 Alexey Butenko 2008-06-03 10:54:15 UTC
This issue blocking JavaFX debugger functionality such as: 
 - View Local Variables 
 - Watches 
 - Hints
Comment 4 Martin Entlicher 2008-06-11 17:27:07 UTC
FYI: you do not need expression parser for Local Variables - they can be retrieved via
com.sun.jdi.StackFrame.visibleVariables().

In case you do not need to evaluate expressions in Watches and Hints, the local variables and fields of
StackFrame.thisObject() can be used to evaluate variables without the parser.
Comment 5 David Strupl 2008-09-11 15:46:14 UTC
I think this is fixed now.
Comment 6 Alexey Butenko 2008-10-09 09:51:37 UTC
verified