Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
kernel
Commits
047ff0c9
Commit
047ff0c9
authored
Nov 27, 2017
by
Sudeep Kanav
Browse files
removed version, author, and Id svn props
refs 3192
parent
8a5fa9d4
Changes
24
Hide whitespace changes
Inline
Side-by-side
org.fortiss.tooling.spiderchart.ui/trunk/pom.xml
View file @
047ff0c9
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Id$
@version $Rev$
@ConQAT.Rating GREEN Hash: 0D57DEAFAB1D3BF3010CDA2E067A9AA7
@ConQAT.Rating GREEN Hash: 0D57DEAFAB1D3BF3010CDA2E067A9AA7
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/example/Sample.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -57,8 +56,6 @@ import org.fortiss.tooling.spiderchart.widget.SpiderChartViewer;
*
* @author mondal
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: C91B18411D4F7B4E1C032EE19269FAB3
*/
public
final
class
Sample
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/model/AxisBase.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -23,8 +22,6 @@ import static java.util.Objects.requireNonNull;
* Base class for different axis implementations.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 8E07C54D78366C5F7EC029D2B4D72CC5
*/
public
abstract
class
AxisBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/model/DataSeries.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -26,8 +25,6 @@ import java.util.Map;
* Class representing series of data for each axis of a spider chart.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 3223C4E000C13F91E0FCD9D948337EC4
*/
public
final
class
DataSeries
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/model/DoubleAxis.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -23,8 +22,6 @@ import java.util.Comparator;
* Class representing an axis of the spider chart.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 281230F7465DE22125D271808838B085
*/
public
final
class
DoubleAxis
extends
AxisBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/model/EnumerationAxis.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -26,8 +25,6 @@ import java.util.List;
* An axis that represents an enumeration.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 4903BD533FF6807E065D401E8D0D5BB4
*/
public
final
class
EnumerationAxis
<
T
extends
Object
>
extends
AxisBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/model/SpiderChart.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -26,8 +25,6 @@ import java.util.List;
* Main class of the spider chart model.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: B12F80BC8423C859208043B582A3240F
*/
public
final
class
SpiderChart
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/AxisStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -32,8 +31,6 @@ import org.fortiss.tooling.spiderchart.model.DoubleAxis;
* If {@link #segmentStyle} is non-null then indicators will be drawn.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 8ABEEF8BA1DE5BD8AB869F5FB19EC9B9
*/
public
final
class
AxisStyle
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/ChartStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -31,8 +30,6 @@ import org.fortiss.tooling.spiderchart.model.SpiderChart;
* Class for all style attributes of the {@link SpiderChart spider chart}.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 3241FC78CE4B9AEF14949E0ED89DCDB4
*/
public
final
class
ChartStyle
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/ColorStyleBase.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -25,8 +24,6 @@ import org.fortiss.tooling.spiderchart.util.RGBColorUtils;
* Base class for styles with a single {@link RGB} color.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 8D1947101EBAB962D8A924FEEA0964AA
*/
public
abstract
class
ColorStyleBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/DataSeriesStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -32,8 +31,6 @@ import org.fortiss.tooling.spiderchart.model.EnumerationAxis;
* Class for all style attributes of {@link DataSeries data series}.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 8B5C36A2DE9B5742DA828ABA16E73E7F
*/
public
final
class
DataSeriesStyle
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/FillStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -24,8 +23,6 @@ import org.eclipse.swt.graphics.RGB;
*
* @author mondal
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 539AFFF4875378DAD72A7AB7E7D31174
*/
public
final
class
FillStyle
extends
ColorStyleBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/FontStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -32,8 +31,6 @@ import org.eclipse.swt.graphics.RGB;
* Class for style attributes of fonts (FontData and SWT color).
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 8B56A6D9BDB95A588D8AD39E03D277F8
*/
public
final
class
FontStyle
extends
ColorStyleBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/LegendStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -23,8 +22,6 @@ import org.eclipse.swt.graphics.RGB;
* Class for all style attributes of the spider chart legend.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 0BE4341696DBAF47FC1AF6BBB2D5EF8A
*/
public
final
class
LegendStyle
extends
ColorStyleBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/style/LineStyle.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -27,8 +26,6 @@ import org.fortiss.tooling.base.ui.utils.GCUtils.GCStateManager;
* Represents a style to be used in SWT spider chart graphics.
*
* @author mondal
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: E409257264305C2E695A14DF949C9E43
*/
public
final
class
LineStyle
extends
ColorStyleBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/util/AxisUtils.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -25,8 +24,6 @@ import org.fortiss.tooling.spiderchart.style.AxisStyle;
* Utility methods related to {@link DoubleAxis} and {@link AxisStyle}.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 394A81CE42BB8CD5A1723C97ECE56B2E
*/
public
class
AxisUtils
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/util/FontUtils.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -26,8 +25,6 @@ import org.eclipse.swt.widgets.Display;
* Utility class for handling fonts with static singletons for a set of commonly used fonts.
*
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: AF94C451A8B8C6A2B67794B0F2202A46
*/
public
class
FontUtils
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/util/RGBColorUtils.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -29,8 +28,6 @@ import org.eclipse.swt.widgets.Display;
*
* @author mondal
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 29060B068D1310066FE781CB5540C072
*/
public
final
class
RGBColorUtils
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/widget/SpiderChartLegendWidget.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -36,8 +35,6 @@ import org.fortiss.tooling.spiderchart.style.LineStyle;
*
* @author mondal
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: B24692F23825CB27B6F4E552CF509981
*/
public
final
class
SpiderChartLegendWidget
extends
SpiderChartWidgetBase
{
...
...
org.fortiss.tooling.spiderchart.ui/trunk/src/org/fortiss/tooling/spiderchart/widget/SpiderChartSWTCanvas.java
View file @
047ff0c9
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
...
...
@@ -36,8 +35,6 @@ import org.fortiss.tooling.spiderchart.style.ChartStyle;
*
* @author mondal
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 2438D943E8FF7E3BD42B9D096B65437D
*/
final
class
SpiderChartSWTCanvas
extends
Canvas
{
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment