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 58596 - Usability problem - what means green higlight of whole target
Summary: Usability problem - what means green higlight of whole target
Status: CLOSED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Ant (show other bugs)
Version: 4.x
Hardware: All All
: P3 blocker (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-05 08:52 UTC by _ lcincura
Modified: 2006-03-24 12:59 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 _ lcincura 2005-05-05 08:52:01 UTC
Have this ant script:
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="helper">
    <target name="all" depends="first, second, third">
        <echo message="Running all targets"/>
        <property name="prop_all" value="pokus"/>
    </target>
    
    <target name="first" depends="second, third">
        <echo message="Running first target"/>
        <property name="prop_1" value="ppp1"/>
    </target>
    
    <target name="second" depends="third">
        <echo message="Running second target"/>
        <property name="prop_2" value="ppp2"/>
    </target>

    <target name="third">
        <echo message="Running third target"/>
        <property name="prop_3" value="ppp3"/>
    </target>
</project>

1, Debug target third => whole target is green, this seems OK as it shows user
what target will be executed
2, Invoke step over => target is still green. What does this highlighting means?
3, Invoke step over => execution finishes. User does not in reality know, what
happened after first step over
Comment 1 Martin Entlicher 2005-10-31 16:20:50 UTC
This is fixed now. (After the fix of issue #65927).
Comment 2 _ lcincura 2005-12-20 13:36:31 UTC
Verified in 200512181900