Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


/**
* Shows the available values of X axis.
* Shows the available values of an axis.
*
* @author Siwei Zhang
* @since 10.1
Expand All @@ -28,7 +28,7 @@ public sealed interface IAxisDomain permits IAxisDomain.Categorical, IAxisDomain
* Categorical axis domain (e.g., names or labels).
*
* @param categories
* the category labels for the X axis
* the category labels for the axis
*/
record Categorical(List<String> categories) implements IAxisDomain {
@Override
Expand All @@ -49,7 +49,7 @@ public int hashCode() {

@Override
public String toString() {
return "AxisDomain.Categorical{categories=" + categories + "}"; //$NON-NLS-1$ //$NON-NLS-2$
return "IAxisDomain.Categorical{categories=" + categories + "}"; //$NON-NLS-1$ //$NON-NLS-2$
}
}

Expand Down Expand Up @@ -81,7 +81,7 @@ public int hashCode() {

@Override
public String toString() {
return "AxisDomain.TimeRange{start=" + start + ", end=" + end + "}"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
return "IAxisDomain.Range{start=" + start + ", end=" + end + "}"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
}
Loading