Bug 380639 - outline drag and drop must move code
Summary: outline drag and drop must move code
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: PHP UI CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-05-25 06:42 EDT by Corné Oppelaar CLA
Modified: 2020-05-14 10:17 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Corné Oppelaar CLA 2012-05-25 06:42:17 EDT
Build Identifier: 20100617-1415

In the outline, when I drag a function or variable or even a class  and drop it on a different place in the the outline it has to move the the whole function/var/class to the chosen place.
like when I have in PHP:

     function example(){echo 'nooooo';}

     var $_example;
     
     class Example{}

and when I move class Example to the top in the outline the code has to be changed to:

     class Example{}
     
     function example(){echo 'nooooo';}

     var $_example;


Reproducible: Always

Steps to Reproduce:
1. open outline
2. drag and drop to a higher line