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.

View | Details | Raw Unified | Return to bug 78746
Collapse All | Expand All

(-)src/org/netbeans/modules/project/ui/actions/NewProject.java (-1 / +3 lines)
Lines 176-182 Link Here
176
                        }
176
                        }
177
                        
177
                        
178
                        // Show the project tab to show the user we did something
178
                        // Show the project tab to show the user we did something
179
                        ProjectUtilities.makeProjectTabVisible( true );
179
                        if (System.getProperty("bluej.edition") == null) {
180
                            ProjectUtilities.makeProjectTabVisible( true );
181
                        }
180
                        
182
                        
181
                        // Second open the files
183
                        // Second open the files
182
                        if (filesToOpen.isEmpty() && lastProject != null) {
184
                        if (filesToOpen.isEmpty() && lastProject != null) {
(-)src/org/netbeans/modules/project/ui/actions/OpenProject.java (-2 / +4 lines)
Lines 137-144 Link Here
137
                                Node[] nodesArray = new Node[ nodes.size() ];
137
                                Node[] nodesArray = new Node[ nodes.size() ];
138
                                nodes.toArray( nodesArray );
138
                                nodes.toArray( nodesArray );
139
                                ptLogial.getExplorerManager ().setSelectedNodes (nodesArray);
139
                                ptLogial.getExplorerManager ().setSelectedNodes (nodesArray);
140
                                ptLogial.open ();
140
                                if (System.getProperty("bluej.edition") == null) {
141
                                ptLogial.requestActive ();
141
                                    ptLogial.open ();
142
                                    ptLogial.requestActive ();
143
                                }
142
                            } catch (Exception ignore) {
144
                            } catch (Exception ignore) {
143
                                // may ignore it
145
                                // may ignore it
144
                            }
146
                            }
(-)arch.xml (+9 lines)
Lines 648-653 Link Here
648
 <answer id="exec-property">
648
 <answer id="exec-property">
649
  <ul>
649
  <ul>
650
   <li>
650
   <li>
651
    <api group="property" name="bluej.edition" type="export" category="private">
652
     <p>
653
         When this property is set, the opening of projects doesn't trigger 
654
         opening and focusing of the projects logical view  top component.
655
         Allows the BlueJ Edition to focus it's own component instead.
656
     </p>
657
    </api>
658
    </li>
659
   <li>
651
    <api group="property" name="org.netbeans.modules.project.ui.OpenProjectList" type="export" category="private">
660
    <api group="property" name="org.netbeans.modules.project.ui.OpenProjectList" type="export" category="private">
652
     <p>
661
     <p>
653
      Error manager logging category for things affecting project list.
662
      Error manager logging category for things affecting project list.
(-)apichanges.xml (+20 lines)
Lines 28-33 Link Here
28
    </apidefs>
28
    </apidefs>
29
29
30
    <changes>
30
    <changes>
31
        <change id="bluejproperty">
32
            <api name="recent"/>
33
            <summary>Don't open project view component in bluej edition.</summary>
34
            <version major="1" minor="12"/>
35
            <date day="1" month="2" year="2007"/>
36
            <author login="mkleint"/>
37
            <compatibility addition="yes"/>
38
            <description>
39
                <p>
40
         Use system property "bluej.edition" for influencing the behaviour on creation or opening of projects.
41
         When this property is set, the opening/creating of projects doesn't trigger 
42
         opening and focusing of the projects logical view  top component.
43
         Allows the BlueJ Edition to focus it's own component instead.
44
                </p>
45
            </description>
46
            <!--class package="org.netbeans.modules.project.ui.actions" name="NewProject"/>
47
            <class package="org.netbeans.modules.project.ui.actions" name="OpenProject"/-->
48
            <issue number="78746"/>
49
        </change>
50
        
31
        <change id="RecentProjects">
51
        <change id="RecentProjects">
32
            <api name="recent"/>
52
            <api name="recent"/>
33
            <summary>Provide a way to get list of information about recent projects.</summary>
53
            <summary>Provide a way to get list of information about recent projects.</summary>
(-)nbproject/project.properties (-1 / +1 lines)
Lines 17-23 Link Here
17
17
18
javac.compilerargs=-Xlint:unchecked
18
javac.compilerargs=-Xlint:unchecked
19
javac.source=1.5
19
javac.source=1.5
20
spec.version.base=1.11.0
20
spec.version.base=1.12.0
21
21
22
javadoc.arch=${basedir}/arch.xml
22
javadoc.arch=${basedir}/arch.xml
23
javadoc.apichanges=${basedir}/apichanges.xml
23
javadoc.apichanges=${basedir}/apichanges.xml

Return to bug 78746