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

(-)templates_3.3/helloRCP/java/ApplicationWorkbenchAdvisor.java (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor {
7
public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor {
8
8
9
	private static final String PERSPECTIVE_ID = "$pluginId$.perspective";
9
	private static final String PERSPECTIVE_ID = "$pluginId$.perspective"; //$$NON-NLS-1$$
10
10
11
    public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) {
11
    public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) {
12
        return new ApplicationWorkbenchWindowAdvisor(configurer);
12
        return new ApplicationWorkbenchWindowAdvisor(configurer);
(-)templates_3.3/helloRCP/java/ApplicationWorkbenchWindowAdvisor.java (-1 / +1 lines)
Lines 22-28 Link Here
22
        configurer.setShowCoolBar(false);
22
        configurer.setShowCoolBar(false);
23
        configurer.setShowStatusLine(false);
23
        configurer.setShowStatusLine(false);
24
%if productBranding == false
24
%if productBranding == false
25
        configurer.setTitle("$windowTitle$");
25
        configurer.setTitle("$windowTitle$"); //$$NON-NLS-1$$
26
%endif
26
%endif
27
    }
27
    }
28
}
28
}
(-)src/org/eclipse/pde/internal/ui/wizards/plugin/PluginClassCodeGenerator.java (-1 / +1 lines)
Lines 89-95 Link Here
89
			writer.println("public class " + className + " extends Plugin {"); //$NON-NLS-1$ //$NON-NLS-2$
89
			writer.println("public class " + className + " extends Plugin {"); //$NON-NLS-1$ //$NON-NLS-2$
90
		writer.println();
90
		writer.println();
91
		writer.println("\t// The plug-in ID"); //$NON-NLS-1$
91
		writer.println("\t// The plug-in ID"); //$NON-NLS-1$
92
		writer.println("\tpublic static final String PLUGIN_ID = \"" + fPluginData.getId() + "\";"); //$NON-NLS-1$ //$NON-NLS-2$
92
		writer.println("\tpublic static final String PLUGIN_ID = \"" + fPluginData.getId() + "\"; //$NON-NLS-1$"); //$NON-NLS-1$ //$NON-NLS-2$
93
		writer.println();
93
		writer.println();
94
		writer.println("\t// The shared instance"); //$NON-NLS-1$
94
		writer.println("\t// The shared instance"); //$NON-NLS-1$
95
		writer.println("\tprivate static " + className + " plugin;"); //$NON-NLS-1$ //$NON-NLS-2$
95
		writer.println("\tprivate static " + className + " plugin;"); //$NON-NLS-1$ //$NON-NLS-2$

Return to bug 241074