Révision 880

tmp/org.txm.chartsengine.r.feature/feature.xml (revision 880)
18 18

  
19 19
   <requires>
20 20
      <import plugin="org.txm.statsengine.r.core" version="1.0.0" match="greaterOrEqual"/>
21
      <import plugin="org.txm.utils" version="1.0.0" match="greaterOrEqual"/>
22
      <import plugin="org.eclipse.core.runtime"/>
23 21
      <import plugin="org.txm.chartsengine.core" version="1.0.0" match="greaterOrEqual"/>
24
      <import plugin="org.txm.core"/>
25
      <import plugin="org.eclipse.ui" version="3.106.1" match="greaterOrEqual"/>
26
      <import plugin="org.txm.chartsengine.r.core" version="1.0.0" match="greaterOrEqual"/>
27 22
      <import plugin="org.txm.chartsengine.rcp" version="1.0.0" match="greaterOrEqual"/>
28
      <import plugin="org.txm.rcp" version="0.7.8" match="greaterOrEqual"/>
29 23
   </requires>
30 24

  
31 25
   <plugin
tmp/org.txm.chartsengine.jfreechart.feature/feature.xml (revision 880)
19 19
   <requires>
20 20
      <import plugin="org.txm.libs.jfreechart" version="1.0.17" match="greaterOrEqual"/>
21 21
      <import plugin="org.txm.libs.itext"/>
22
      <import plugin="org.eclipse.core.runtime"/>
23 22
      <import plugin="org.txm.libs.jfreesvg" version="1.7.0" match="greaterOrEqual"/>
24 23
      <import plugin="org.txm.chartsengine.core" version="1.0.0" match="greaterOrEqual"/>
25
      <import plugin="org.txm.core"/>
26
      <import plugin="org.txm.chartsengine.jfreechart.core" version="1.0.0" match="greaterOrEqual"/>
27 24
      <import plugin="org.txm.chartsengine.rcp" version="1.0.0" match="greaterOrEqual"/>
28
      <import plugin="org.txm.rcp" version="0.7.8" match="greaterOrEqual"/>
29
      <import plugin="org.txm.ca.core" version="1.0.0" match="greaterOrEqual"/>
30 25
   </requires>
31 26

  
32 27
   <plugin
tmp/org.txm.chartsengine.r.rcp/.classpath (revision 880)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
5 9
	<classpathentry kind="src" path="src"/>
6 10
	<classpathentry kind="output" path="bin"/>
7 11
</classpath>
tmp/org.txm.chartsengine.r.rcp/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.eclipse.ui;bundle-version="3.106.1";visibility:=re
3
 export,org.txm.chartsengine.r.core;bundle-version="1.0.0";visibility:
4
 =reexport,org.txm.core;visibility:=reexport,org.txm.chartsengine.rcp;
5
 bundle-version="1.0.0";visibility:=reexport,org.txm.rcp;bundle-versio
6
 n="0.7.8";visibility:=reexport
2
Require-Bundle: org.txm.chartsengine.rcp;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.chartsengine.r.core;bundle-version="1.0.0";visibility:=reexport
7 4
Export-Package: org.txm.rcp.chartsengine.r.preferences
8 5
Bundle-Vendor: Textometrie.org
9 6
Bundle-Version: 1.0.0.qualifier
10 7
Bundle-Name: R Charts Engine RCP
11 8
Bundle-ManifestVersion: 2
12 9
Bundle-SymbolicName: org.txm.chartsengine.r.rcp;singleton:=true
13
Import-Package: org.txm.chartsengine.rcp.messages
14 10
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
15 11

  
tmp/org.txm.chartsengine.jfreechart.rcp/src/org/txm/chartsengine/jfreechart/rcp/events/DefaultChartMouseListener.java (revision 880)
19 19
import org.jfree.chart.plot.XYPlot;
20 20
import org.jfree.data.category.CategoryDataset;
21 21
import org.jfree.data.xy.XYSeriesCollection;
22
import org.txm.ca.core.chartsengine.jfreechart.datasets.CAXYDataset;
22
//import org.txm.ca.core.chartsengine.jfreechart.datasets.CAXYDataset;
23 23
import org.txm.chartsengine.jfreechart.core.renderers.MultipleItemsSelector;
24 24
import org.txm.chartsengine.jfreechart.core.renderers.interfaces.IRendererWithItemSelection;
25 25
import org.txm.chartsengine.rcp.IChartComponent;
......
175 175
										menuText += (String)((SymbolAxis) ((XYPlot) plot).getDomainAxis()).getSymbols()[selectedItems[j]] + "\n";
176 176
									}
177 177
									// CA
178
									else if(itemEntity.getDataset() instanceof CAXYDataset)	{
179
										menuText += ((CAXYDataset)((XYPlot)plot).getDataset()).getLabel(selectedSeries, selectedItems[j]);
180
									}
178
									//FIXME move this to CA.core/rcp ?
179
//									else if(itemEntity.getDataset() instanceof CAXYDataset)	{
180
//										menuText += ((CAXYDataset)((XYPlot)plot).getDataset()).getLabel(selectedSeries, selectedItems[j]);
181
//									}
181 182
									// Progression
182 183
									else if(itemEntity.getDataset() instanceof XYSeriesCollection)	{
183 184
										menuText += ((XYSeriesCollection)itemEntity.getDataset()).getSeriesKey(selectedSeries);
tmp/org.txm.chartsengine.jfreechart.rcp/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.chartsengine.jfreechart.core;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.chartsengine.rcp;bundle-version="1.0.0";visibility:=reexport,
4
 org.txm.rcp;bundle-version="0.7.8";visibility:=reexport,
5
 org.txm.ca.core;bundle-version="1.0.0";visibility:=reexport
2
Require-Bundle: org.txm.chartsengine.rcp;bundle-version="1.0.0",
3
 org.txm.chartsengine.jfreechart.core;bundle-version="1.0.0";visibility:=reexport
6 4
Export-Package: org.txm.chartsengine.jfreechart.rcp,
7 5
 org.txm.chartsengine.jfreechart.rcp.events,
8 6
 org.txm.chartsengine.jfreechart.rcp.handlers,
tmp/org.txm.chartsengine.r.core/.classpath (revision 880)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
5 9
	<classpathentry kind="src" path="src"/>
6 10
	<classpathentry kind="output" path="bin"/>
7 11
</classpath>
tmp/org.txm.chartsengine.r.core/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.statsengine.r.core;bundle-version="1.0.0";visi
3
 bility:=reexport,org.txm.utils;bundle-version="1.0.0";visibility:=ree
4
 xport,org.eclipse.core.runtime;visibility:=reexport,org.txm.chartseng
5
 ine.core;bundle-version="1.0.0";visibility:=reexport,org.txm.core;vis
6
 ibility:=reexport
2
Require-Bundle: org.txm.statsengine.r.core;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.chartsengine.core;bundle-version="1.0.0";visibility:=reexport
7 4
Export-Package: org.txm.chartsengine.r.core,org.txm.chartsengine.r.cor
8 5
 e.preferences,org.txm.chartsengine.r.core.themes,org.txm.stat.engine.
9 6
 r
tmp/org.txm.chartsengine.r.core/src/org/txm/chartsengine/r/core/RChartsEngine.java (revision 880)
195 195
	}
196 196

  
197 197
	@Override
198
	public boolean getState() {
198
	public boolean isRunning() {
199 199
		// TODO Auto-generated method stub
200 200
		return false;
201 201
	}
tmp/org.txm.chartsengine.core/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.core;bundle-version="0.7.0";visibility:=reexpo
3
 rt
4 2
Export-Package: org.txm.chartsengine.core,org.txm.chartsengine.core.me
5 3
 ssages,org.txm.chartsengine.core.preferences,org.txm.chartsengine.cor
6 4
 e.results
......
10 8
Bundle-ManifestVersion: 2
11 9
Bundle-SymbolicName: org.txm.chartsengine.core;singleton:=true
12 10
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
11
Require-Bundle: org.txm.core;bundle-version="0.8.0";visibility:=reexport
13 12

  
tmp/org.txm.chartsengine.raster.rcp/.classpath (revision 880)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
5 9
	<classpathentry kind="src" path="src"/>
6 10
	<classpathentry kind="output" path="bin"/>
7 11
</classpath>
tmp/org.txm.chartsengine.raster.rcp/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.utils;bundle-version="1.0.0";visibility:=reexp
3
 ort,org.eclipse.ui;bundle-version="3.106.1";visibility:=reexport,org.
4
 txm.core;visibility:=reexport,org.txm.chartsengine.core;bundle-versio
5
 n="1.0.0";visibility:=reexport,org.txm.chartsengine.rcp;bundle-versio
6
 n="1.0.0";visibility:=reexport,org.txm.rcp;bundle-version="0.7.8";vis
7
 ibility:=reexport
2
Require-Bundle: org.txm.chartsengine.rcp;bundle-version="1.0.0";visibility:=reexport
8 3
Export-Package: org.txm.chartsengine.raster.rcp,org.txm.chartsengine.r
9 4
 aster.rcp.swt
10 5
Bundle-Vendor: Textometrie.org
tmp/org.txm.chartsengine.jfreechart.core/src/org/txm/chartsengine/jfreechart/core/JFCChartsEngine.java (revision 880)
1568 1568

  
1569 1569

  
1570 1570
	@Override
1571
	public boolean getState() {
1571
	public boolean isRunning() {
1572 1572
		// TODO Auto-generated method stub
1573 1573
		return false;
1574 1574
	}
tmp/org.txm.chartsengine.jfreechart.core/.classpath (revision 880)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
5 9
	<classpathentry kind="src" path="src"/>
6 10
	<classpathentry kind="output" path="bin"/>
7 11
</classpath>
tmp/org.txm.chartsengine.jfreechart.core/META-INF/MANIFEST.MF (revision 880)
1 1
Manifest-Version: 1.0
2 2
Require-Bundle: org.txm.libs.jfreechart;bundle-version="1.0.17";visibility:=reexport,
3 3
 org.txm.libs.itext;visibility:=reexport,
4
 org.eclipse.core.runtime;visibility:=reexport,
5 4
 org.txm.libs.jfreesvg;bundle-version="1.7.0";visibility:=reexport,
6
 org.txm.chartsengine.core;bundle-version="1.0.0";visibility:=reexport,
7
 org.txm.core;visibility:=reexport
5
 org.txm.chartsengine.core;bundle-version="1.0.0";visibility:=reexport
8 6
Export-Package: org.txm.chartsengine.jfreechart.core,
9 7
 org.txm.chartsengine.jfreechart.core.preferences,
10 8
 org.txm.chartsengine.jfreechart.core.renderers,

Formats disponibles : Unified diff