eclipse plugin: Add a blank page for project properties.
This commit is contained in:
parent
138dfc5b84
commit
1b309b0992
2 changed files with 29 additions and 0 deletions
|
@ -801,4 +801,13 @@
|
|||
priority="normal">
|
||||
</content-type>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.ui.propertyPages">
|
||||
<page
|
||||
class="org.wesnoth.propertypages.WesnothProjectPage"
|
||||
id="org.wesnoth.propertyPages.wesnothProject"
|
||||
name="Wesnoth Project"
|
||||
objectClass="org.eclipse.core.resources.IProject">
|
||||
</page>
|
||||
</extension>
|
||||
</plugin>
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
package org.wesnoth.propertypages;
|
||||
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.Control;
|
||||
import org.eclipse.ui.IWorkbenchPropertyPage;
|
||||
import org.eclipse.ui.dialogs.PropertyPage;
|
||||
|
||||
public class WesnothProjectPage extends PropertyPage implements IWorkbenchPropertyPage
|
||||
{
|
||||
|
||||
public WesnothProjectPage()
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Control createContents( Composite parent )
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue