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 83202 - Setting direction ('Out') for Return value ('Parameter') break operation
Summary: Setting direction ('Out') for Return value ('Parameter') break operation
Status: NEW
Alias: None
Product: uml
Classification: Unclassified
Component: Diagram Class (show other bugs)
Version: 5.x
Hardware: PC Windows XP
: P2 blocker (vote)
Assignee: issues@uml
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-22 15:26 UTC by bugbridge
Modified: 2007-01-19 08:20 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bugbridge 2006-08-22 15:26:03 UTC
Original submitter: sergeyp

steps to reproduce:
1. create package with scoped clas diagram
2. add class to the diagram
3. add operation 'public int ggg()' to the class
4. select 'Parameters' node within operation's node
5. select 'Out' direction in properties
return type goes to parameters on diagram and in source
source is broken
Comment 1 Peter Lam 2007-01-19 08:20:50 UTC
There's no live round-trip feature but the following manually generated code has
incorrect operation parameter declaration.

package pack1;

public class c1 {
    public c1() {
    }

    public int ggg(int ) {
        return 0;
    }
}