Bug 132587 - Custom property editors appear behind the IDE
Summary: Custom property editors appear behind the IDE
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: VE (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: VE Bugzilla inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-20 15:12 EST by David Pociu / InsiTech Group CLA
Modified: 2011-06-13 11:38 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 David Pociu / InsiTech Group CLA 2006-03-20 15:12:07 EST
This looks like a regression from previous VE versions.

Basically if I have a custom property editor like this code below:

public class OSetsPropertyEditor extends java.beans.PropertyEditorSupport {
    
    
    /** Creates a new instance of OSetNamePropertyEditor */
    public OSetsPropertyEditor() {super();}
    
    public boolean isPaintable() {  return false; }
    
    public boolean supportsCustomEditor(){ return true; }
    
    public Component getCustomEditor(){
        return new OSetsPanel(this);
    }
    ....
    .....
}

When the custom panel is displayed , 2 things are strange:
1. the panel is displayed BEHIND the IDE
2. the name of the window containing the property editor is "J"