Skip to content

Commit

Permalink
feat: Improve product (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
unknowIfGuestInDream committed May 16, 2024
1 parent 9db10eb commit e10b8c0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: %plugin.SWTBrowserExample.name
Bundle-SymbolicName: org.eclipse.swt.examples.browser; singleton:=true
Bundle-Version: 3.102.0.qualifier
Bundle-ClassPath: browserexample.jar
Bundle-Activator: org.eclipse.swt.examples.browserexample.BrowserPlugin
Bundle-Activator: org.eclipse.swt.examples.browser.BrowserPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui.ide,
Expand All @@ -17,4 +17,4 @@ Require-Bundle: org.eclipse.ui.ide,
org.eclipse.swt,
org.eclipse.swt.examples
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.swt.examples.browserexample
Export-Package: org.eclipse.swt.examples.browser
2 changes: 1 addition & 1 deletion examples/org.eclipse.swt.examples.browser/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name="%view.BrowserExample.name"
icon="icons/browser_example.gif"
category="org.eclipse.swt.examples.category"
class="org.eclipse.swt.examples.browserexample.BrowserView"
class="org.eclipse.swt.examples.browser.BrowserView"
id="org.eclipse.swt.examples.browserexample.view">
</view>
</extension>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.examples.browserexample;
package org.eclipse.swt.examples.browser;


import org.eclipse.ui.plugin.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.examples.browserexample;
package org.eclipse.swt.examples.browser;

import org.eclipse.swt.examples.browserexample.BrowserExample;
import org.eclipse.swt.widgets.*;
import org.eclipse.ui.part.*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

<product name="SWT Examples Product" uid="com.tlcsdm.tlstudio.examples.swt.rcp.product" id="com.tlcsdm.tlstudio.examples.swt.rcp.product" application="com.tlcsdm.tlstudio.examples.swt.rcp.application" version="1.0.0.qualifier" type="bundles" includeLaunchers="true" autoIncludeRequirements="true">


<configIni use="default">
</configIni>

Expand All @@ -11,16 +12,21 @@
</vmArgsMac>
</launcherArgs>

<windowImages/>


<launcher name="SWT Examples">
<win useIco="false">
<bmp/>
</win>
</launcher>


<vm>
<windows include="true">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17</windows>
</vm>


<plugins>
<plugin id="bcpg"/>
<plugin id="bcprov"/>
Expand Down

0 comments on commit e10b8c0

Please sign in to comment.