Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8ad06afb6a6936d91b02ef4a81f4e919347421af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension id="product" point="org.eclipse.core.runtime.products">
	<product name="DnDSample" application="org.eclipse.fx.ui.workbench.fx.application" >
		<property name="appName" value="DnDSample" />
		
		<property name="applicationXMI" value="org.eclipse.fx.testcases.dnd.app/Application.e4xmi" />
		
		<property name="cssTheme" value="theme.default" />
		
	</product>
	
</extension>
<extension  point="org.eclipse.fx.ui.theme">
	<theme id="theme.default" basestylesheet="css/default.css" />
	
</extension>
</plugin>

Back to the top