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 89679 - Compilation errors in jellytools
Summary: Compilation errors in jellytools
Status: VERIFIED FIXED
Alias: None
Product: qa
Classification: Unclassified
Component: Jellytools (show other bugs)
Version: 6.x
Hardware: All All
: P1 blocker (vote)
Assignee: issues@qa
URL:
Keywords:
: 89790 (view as bug list)
Depends on:
Blocks:
 
Reported: 2006-11-20 15:13 UTC by Marian Mirilovic
Modified: 2006-11-24 10:02 UTC (History)
1 user (show)

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 Marian Mirilovic 2006-11-20 15:14:00 UTC
I tried to build jellytools today and it doesn't work after recent changes in
Core-Windows :
-------------------------------------------------------------------
 [javac]
/local_export/sources/nb_all/jellytools/src/org/netbeans/jellytools/actions/MaximizeWindowAction.java:84:
cannot find symbol
    [javac] symbol  : method setMaximizedMode(org.netbeans.core.windows.ModeImpl)
    [javac] location: class org.netbeans.core.windows.WindowManagerImpl
    [javac]             wm.setMaximizedMode(activeMode);
    [javac]               ^
    [javac]
/local_export/sources/nb_all/jellytools/src/org/netbeans/jellytools/actions/MaximizeWindowAction.java:99:
cannot find symbol
    [javac] symbol  : method setMaximizedMode(org.netbeans.core.windows.ModeImpl)
    [javac] location: class org.netbeans.core.windows.WindowManagerImpl
    [javac]                 wm.setMaximizedMode(mode);
    [javac]                   ^
    [javac]
/local_export/sources/nb_all/jellytools/src/org/netbeans/jellytools/actions/RestoreWindowAction.java:81:
cannot find symbol
    [javac] symbol  : method setMaximizedMode(<nulltype>)
    [javac] location: class org.netbeans.core.windows.WindowManagerImpl
    [javac]         WindowManagerImpl.getInstance().setMaximizedMode(null);
    [javac]                                      ^
-------------------------------------------------------------------

It looks like we have to divide this action to 
MaximizeEditorAction and MaximizeViewAction
Comment 1 Jiri Skrivanek 2006-11-22 08:05:39 UTC
*** Issue 89790 has been marked as a duplicate of this issue. ***
Comment 2 Jiri Skrivanek 2006-11-22 09:46:00 UTC
I only changed method setMaximizedMode to switchMaximize mode. It seems to
behave the same way as before both for editor TopComponent and non-editor
TopComponent.

http://jellytools.netbeans.org/source/browse/jellytools/src/org/netbeans/jellytools/actions/MaximizeWindowAction.java?r1=1.7&r2=1.8
http://jellytools.netbeans.org/source/browse/jellytools/src/org/netbeans/jellytools/actions/RestoreWindowAction.java?r1=1.5&r2=1.6
Comment 3 Marian Mirilovic 2006-11-24 10:02:59 UTC
verified - thanks