Commit b2434d60 authored by claes's avatar claes

textColor functions added

parent 8b3c93ac
......@@ -24,6 +24,8 @@ public class JopAxis extends JComponent {
}
int fillColor = 9999;
int borderColor = 9999;
public int originalTextColor = 9999;
public int textColor = 9999;
int lineWidth = 1;
float lineLength;
int lines = 11;
......@@ -43,6 +45,13 @@ public class JopAxis extends JComponent {
public int getBorderColor() {
return borderColor;
}
public void setTextColor( int textColor) {
this.textColor = textColor;
this.originalTextColor = textColor;
}
public int getTextColor() {
return textColor;
}
public void setLineWidth( int lineWidth) {
this.lineWidth = lineWidth;
}
......
......@@ -24,6 +24,8 @@ public class JopAxis extends JComponent {
}
int fillColor = 9999;
int borderColor = 9999;
public int originalTextColor = 9999;
public int textColor = 9999;
int lineWidth = 1;
float lineLength;
int lines = 11;
......@@ -43,6 +45,13 @@ public class JopAxis extends JComponent {
public int getBorderColor() {
return borderColor;
}
public void setTextColor( int textColor) {
this.textColor = textColor;
this.originalTextColor = textColor;
}
public int getTextColor() {
return textColor;
}
public void setLineWidth( int lineWidth) {
this.lineWidth = lineWidth;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment