Skip to content
Snippets Groups Projects
Commit 04a513f9 authored by Simon Barner's avatar Simon Barner
Browse files

Move spider chart example application to test-src.

parent 3f12cc1f
No related branches found
No related tags found
No related merge requests found
......@@ -3,5 +3,6 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test-src"/>
<classpathentry kind="output" path="build"/>
</classpath>
# (c) 2016 fortiss GmbH
source.. = src/
source.. = src/,\
test-src/
output.. = build/
bin.includes = META-INF/,\
.,\
......
Sample.java 293893a0f41fe2b2cd805292cf0c7781accc7530 GREEN
......@@ -13,7 +13,7 @@
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.spiderchart.example;
package test.org.fortiss.tooling.spiderchart;
import static org.fortiss.tooling.spiderchart.style.FontStyle.BLACK_VERDANA_10PT;
import static org.fortiss.tooling.spiderchart.style.FontStyle.BLACK_VERDANA_12PT;
......@@ -56,7 +56,7 @@ import org.fortiss.tooling.spiderchart.widget.SpiderChartViewer;
* @author mondal
* @author hoelzl
*/
public final class Sample { // NO_UCD
public final class SpiderChartExample { // NO_UCD
/** Constructs the spider chart viewer. */
private static SpiderChartViewer buildSpiderChart(final Shell shell) {
SpiderChart spiderChart = new SpiderChart();
......@@ -193,7 +193,7 @@ public final class Sample { // NO_UCD
}
/** {@link Comparator} implementation for {@link Screen}s . */
private static Comparator<Screen> screenComparator = new Comparator<Sample.Screen>() {
private static Comparator<Screen> screenComparator = new Comparator<SpiderChartExample.Screen>() {
@Override
public int compare(Screen o1, Screen o2) {
return o1.width - o2.width;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment