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 135228

Summary: RE-OP: left edge of combined fragments is drawn too close of left edge of window
Product: uml Reporter: Peter Lam <petersl>
Component: Reverse EngineeringAssignee: issues@uml <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Attachments: combined fragment left edge

Description Peter Lam 2008-05-16 17:26:51 UTC
build 20080513

re-op the following operation. The left edge of the outer combined fragment is too close to the left edge of the drawing
window that is very hard to tell. See the attached screenshot.

    public void testLoopWhile5(){
        
        List list = new LinkedList();
        
        loop_a: while( list.size() > 0 ){
            Iterator iter = list.iterator();
            
            loop_b: while(iter.hasNext()){
                list.remove(iter.next());
                break loop_b;
            }
            
            loop_c: while(iter.hasNext()){
                list.remove(list.size() - 1);
                continue loop_a;
            }
        }
    }
Comment 1 Peter Lam 2008-05-16 17:27:27 UTC
Created attachment 61493 [details]
combined fragment left edge
Comment 2 Sergey Petrov 2008-05-16 17:43:15 UTC
unfortunately it's hard just to add space to right, but still possible to move entire diagram right,
currently prefer to not fix it in this release but will look into if smth change a bit later.