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 15640

Summary: Make j2eeserver independent of IDE core
Product: serverplugins Reporter: Petr Jiricka <pjiricka>
Component: InfrastructureAssignee: Damian Frach <dfrach>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P3    
Version: 3.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description Petr Jiricka 2001-09-19 14:26:46 UTC
Currently the org.netbeans.modules.j2ee.impl.ServerExecSupport class uses class 
FileSelector (same package) as a custom property editor for the target 
Application property. Large parts of FileSelector have been copied from IDE 
core, and there are still some dependencies on the core. 

This class should be removed, and the regular editor for DataObject should be 
used:

java.beans.PropertyEditorManager.findEditor(DataObject.class)

This will return class org.netbeans.beaninfo.editors.DataObjectEditor, but 
without a hard dependency on the core.
Comment 1 _ gfink 2001-10-17 23:16:43 UTC
This is Damian's code, reassigning to him, he would know all the implications of the
suggested change.  Be sure to make the fix both in the trunk and in the si_main branch.
Comment 2 Damian Frach 2001-10-19 16:59:11 UTC
*** Issue 12699 has been marked as a duplicate of this issue. ***
Comment 3 Damian Frach 2001-10-22 16:17:36 UTC
integrated