Skip to content

Commit

Permalink
format files and remove author tags as we see in git history who the …
Browse files Browse the repository at this point in the history
…author was
  • Loading branch information
Tim Molter committed Jul 30, 2023
1 parent 4973a5a commit ba1fa85
Show file tree
Hide file tree
Showing 148 changed files with 34 additions and 493 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

import org.knowm.xchart.demo.charts.ExampleChart;

/**
* @author timmolter
*/
public final class ChartInfo {

private final String exampleChartName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
* <li>Logarithmic X-Axis
* <li>Place legend at Inside-NW position
* <li>Formatting of number with large magnitude but small differences
*
* @author timmolter
*/
public class ScatterChart02 implements ExampleChart<XYChart> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import java.awt.Color;
import org.knowm.xchart.style.colors.SeriesColors;

/**
* @author timmolter
*/
public class MyCustomSeriesColors implements SeriesColors {

public static final Color GREEN = new Color(0, 205, 0, 180);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import org.knowm.xchart.style.markers.XChartSeriesMarkers;
import org.knowm.xchart.style.theme.AbstractBaseTheme;

/**
* @author timmolter
*/
public class MyCustomTheme extends AbstractBaseTheme {

// Chart Style ///////////////////////////////
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
import org.knowm.xchart.*;
import org.knowm.xchart.style.markers.SeriesMarkers;

/**
* Create a Chart matrix
*
* @author timmolter
*/
/** Create a Chart matrix */
public class Example2 {

public static void main(String[] args) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
import org.knowm.xchart.XChartPanel;
import org.knowm.xchart.demo.charts.area.AreaChart01;

/**
* Class showing how to integrate a chart into a JavaFX Stage
*
* @author timmolter
*/
/** Class showing how to integrate a chart into a JavaFX Stage */
public class JavaFXDemo extends Application {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
import org.knowm.xchart.XChartPanel;
import org.knowm.xchart.demo.charts.area.AreaChart01;

/**
* Class showing how to integrate a chart into a Swing JFrame
*
* @author timmolter
*/
/** Class showing how to integrate a chart into a Swing JFrame */
public class SwingDemo {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
import org.knowm.xchart.SwingWrapper;
import org.knowm.xchart.XYChart;

/**
* @author timmolter
*/
public class Export2Columns {

public static void main(String[] args) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
import org.knowm.xchart.SwingWrapper;
import org.knowm.xchart.XYChart;

/**
* @author timmolter
*/
public class Export2Rows {

public static void main(String[] args) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
import org.knowm.xchart.XYChart;
import org.knowm.xchart.XYChartBuilder;

/**
* @author timmolter
*/
public class TestForExtremeEdgeCaseData {

public static void main(String[] args) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import org.knowm.xchart.demo.charts.area.AreaChart03;
import org.knowm.xchart.style.Styler;

/**
* @author timmolter
*/
public class TestForIssue106 {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
import org.knowm.xchart.CategoryChartBuilder;
import org.knowm.xchart.SwingWrapper;

/**
* @author timmolter
*/
public class TestForIssue111 {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import org.knowm.xchart.XYChart;
import org.knowm.xchart.XYChartBuilder;

/**
* @author timmolter
*/
public class TestForIssue127 {

public static void main(String[] args) throws InterruptedException, ParseException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
import org.knowm.xchart.CategorySeries.CategorySeriesRenderStyle;
import org.knowm.xchart.SwingWrapper;

/**
* @author timmolter
*/
public class TestForIssue139 {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
import org.knowm.xchart.XYChart;
import org.knowm.xchart.XYChartBuilder;

/**
* @author timmolter
*/
public class TestForIssue151 {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import org.knowm.xchart.SwingWrapper;
import org.knowm.xchart.demo.charts.ExampleChart;

/**
* @author timmolter
*/
public class TestForIssue167 implements ExampleChart<CategoryChart> {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
import org.knowm.xchart.demo.charts.radar.RadarChart01;
import org.knowm.xchart.style.RadarStyler;

/**
* Create a Chart matrix
*
* @author timmolter
*/
/** Create a Chart matrix */
public class TestForIssue189_1 {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.Styler.YAxisPosition;

/**
* @author timmolter
*/
public class TestForIssue244 {

static final int WIDTH = 465;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import org.knowm.xchart.style.lines.SeriesLines;
import org.knowm.xchart.style.markers.SeriesMarkers;

/**
* @author timmolter
*/
public class TestForIssue27_1 {

public static void main(String[] args) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import org.knowm.xchart.style.lines.SeriesLines;
import org.knowm.xchart.style.markers.SeriesMarkers;

/**
* @author timmolter
*/
public class TestForIssue27_2 {

public static void main(String[] args) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.Styler.YAxisPosition;

/**
* @author timmolter
*/
public class TestForIssue291 {

static final int WIDTH = 465;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@
import org.knowm.xchart.style.Styler.ChartTheme;
import org.knowm.xchart.style.Styler.LegendPosition;

/**
* Create a Chart matrix
*
* @author timmolter
*/
/** Create a Chart matrix */
public class TestForIssue54_1 {

static final int WIDTH = 465;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.Styler.YAxisPosition;

/**
* Create a Chart matrix
*
* @author timmolter
*/
/** Create a Chart matrix */
public class TestForIssue54_2 {

static final int WIDTH = 465;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.lines.SeriesLines;

/**
* @author timmolter
*/
public class TestForIssue83 {

public static void main(String[] args) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.XYStyler;

/**
* @author timmolter
*/
public class TestForIssue98 {

public static void main(String[] args) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
import org.knowm.xchart.XYSeries.XYSeriesRenderStyle;
import org.knowm.xchart.style.Styler.LegendPosition;

/**
* @author timmolter
*/
public class AdvancedExample {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
import org.knowm.xchart.style.Styler.LegendPosition;
import org.knowm.xchart.style.markers.SeriesMarkers;

/**
* @author timmolter
*/
public class IntermediateExample {

static final Random random = new Random();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import org.knowm.xchart.SwingWrapper;
import org.knowm.xchart.XYChart;

/**
* @author timmolter
*/
public class SimplestExample {

public static void main(String[] args) throws IOException {
Expand Down
6 changes: 1 addition & 5 deletions xchart/src/main/java/org/knowm/xchart/BitmapEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@
import javax.imageio.stream.FileImageOutputStream;
import org.knowm.xchart.internal.chartpart.Chart;

/**
* A helper class with static methods for saving Charts as bitmaps
*
* @author timmolter
*/
/** A helper class with static methods for saving Charts as bitmaps */
public final class BitmapEncoder {

/** Constructor - Private constructor to prevent instantiation */
Expand Down
3 changes: 0 additions & 3 deletions xchart/src/main/java/org/knowm/xchart/BubbleChart.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
import org.knowm.xchart.style.Styler.ChartTheme;
import org.knowm.xchart.style.theme.Theme;

/**
* @author timmolter
*/
public class BubbleChart extends Chart<BubbleStyler, BubbleSeries> {

/**
Expand Down
3 changes: 0 additions & 3 deletions xchart/src/main/java/org/knowm/xchart/BubbleChartBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

import org.knowm.xchart.internal.ChartBuilder;

/**
* @author timmolter
*/
public class BubbleChartBuilder extends ChartBuilder<BubbleChartBuilder, BubbleChart> {

String xAxisTitle = "";
Expand Down
6 changes: 1 addition & 5 deletions xchart/src/main/java/org/knowm/xchart/BubbleSeries.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@
import org.knowm.xchart.internal.chartpart.RenderableSeries.LegendRenderType;
import org.knowm.xchart.internal.series.NoMarkersSeries;

/**
* A Series containing X, Y and bubble size data to be plotted on a Chart
*
* @author timmolter
*/
/** A Series containing X, Y and bubble size data to be plotted on a Chart */
public class BubbleSeries extends NoMarkersSeries {

private BubbleSeriesRenderStyle bubbleSeriesRenderStyle = null;
Expand Down
2 changes: 0 additions & 2 deletions xchart/src/main/java/org/knowm/xchart/CSVExporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
* This class is used to export Chart data to a folder containing one or more CSV files. The parent
* folder's name is the title of the chart. Each series becomes a CSV file in the folder. The
* series' name becomes the CSV files' name.
*
* @author timmolter
*/
public class CSVExporter {

Expand Down
2 changes: 0 additions & 2 deletions xchart/src/main/java/org/knowm/xchart/CSVImporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
* This class is used to create a Chart object from a folder containing one or more CSV files. The
* parent folder's name becomes the title of the chart. Each CSV file in the folder becomes a series
* on the chart. the CSV file's name becomes the series' name.
*
* @author timmolter
*/
public class CSVImporter {

Expand Down
3 changes: 0 additions & 3 deletions xchart/src/main/java/org/knowm/xchart/CategoryChart.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
import org.knowm.xchart.style.Styler.ChartTheme;
import org.knowm.xchart.style.theme.Theme;

/**
* @author timmolter
*/
public class CategoryChart extends Chart<CategoryStyler, CategorySeries> {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

import org.knowm.xchart.internal.ChartBuilder;

/**
* @author timmolter
*/
public class CategoryChartBuilder extends ChartBuilder<CategoryChartBuilder, CategoryChart> {

String xAxisTitle = "";
Expand Down
3 changes: 0 additions & 3 deletions xchart/src/main/java/org/knowm/xchart/DialChartBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

import org.knowm.xchart.internal.ChartBuilder;

/**
* @author timmolter
*/
public class DialChartBuilder extends ChartBuilder<DialChartBuilder, DialChart> {

public DialChartBuilder() {}
Expand Down
Loading

0 comments on commit ba1fa85

Please sign in to comment.