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 - Make j2eeserver independent of IDE core
Summary: Make j2eeserver independent of IDE core
Status: RESOLVED FIXED
Alias: None
Product: serverplugins
Classification: Unclassified
Component: Infrastructure (show other bugs)
Version: 3.x
Hardware: All All
: P3 blocker (vote)
Assignee: Damian Frach
URL:
Keywords:
: 12699 (view as bug list)
Depends on:
Blocks:
 
Reported: 2001-09-19 14:26 UTC by Petr Jiricka
Modified: 2001-10-22 16:17 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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