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

Summary: Usability problem - what means green higlight of whole target
Product: debugger Reporter: _ lcincura <lcincura>
Component: AntAssignee: Martin Entlicher <mentlicher>
Status: CLOSED FIXED    
Severity: blocker    
Priority: P3    
Version: 4.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

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