📄 tickrecord.java
字号:
rec.field_6_zero1 = field_6_zero1; rec.field_7_zero2 = field_7_zero2; rec.field_8_options = field_8_options; rec.field_9_tickColor = field_9_tickColor; rec.field_10_zero3 = field_10_zero3; return rec; } /** * Get the major tick type field for the Tick record. */ public byte getMajorTickType() { return field_1_majorTickType; } /** * Set the major tick type field for the Tick record. */ public void setMajorTickType(byte field_1_majorTickType) { this.field_1_majorTickType = field_1_majorTickType; } /** * Get the minor tick type field for the Tick record. */ public byte getMinorTickType() { return field_2_minorTickType; } /** * Set the minor tick type field for the Tick record. */ public void setMinorTickType(byte field_2_minorTickType) { this.field_2_minorTickType = field_2_minorTickType; } /** * Get the label position field for the Tick record. */ public byte getLabelPosition() { return field_3_labelPosition; } /** * Set the label position field for the Tick record. */ public void setLabelPosition(byte field_3_labelPosition) { this.field_3_labelPosition = field_3_labelPosition; } /** * Get the background field for the Tick record. */ public byte getBackground() { return field_4_background; } /** * Set the background field for the Tick record. */ public void setBackground(byte field_4_background) { this.field_4_background = field_4_background; } /** * Get the label color rgb field for the Tick record. */ public int getLabelColorRgb() { return field_5_labelColorRgb; } /** * Set the label color rgb field for the Tick record. */ public void setLabelColorRgb(int field_5_labelColorRgb) { this.field_5_labelColorRgb = field_5_labelColorRgb; } /** * Get the zero 1 field for the Tick record. */ public short getZero1() { return field_6_zero1; } /** * Set the zero 1 field for the Tick record. */ public void setZero1(short field_6_zero1) { this.field_6_zero1 = field_6_zero1; } /** * Get the zero 2 field for the Tick record. */ public short getZero2() { return field_7_zero2; } /** * Set the zero 2 field for the Tick record. */ public void setZero2(short field_7_zero2) { this.field_7_zero2 = field_7_zero2; } /** * Get the options field for the Tick record. */ public short getOptions() { return field_8_options; } /** * Set the options field for the Tick record. */ public void setOptions(short field_8_options) { this.field_8_options = field_8_options; } /** * Get the tick color field for the Tick record. */ public short getTickColor() { return field_9_tickColor; } /** * Set the tick color field for the Tick record. */ public void setTickColor(short field_9_tickColor) { this.field_9_tickColor = field_9_tickColor; } /** * Get the zero 3 field for the Tick record. */ public short getZero3() { return field_10_zero3; } /** * Set the zero 3 field for the Tick record. */ public void setZero3(short field_10_zero3) { this.field_10_zero3 = field_10_zero3; } /** * Sets the auto text color field value. * use the quote unquote automatic color for text */ public void setAutoTextColor(boolean value) { field_8_options = autoTextColor.setShortBoolean(field_8_options, value); } /** * use the quote unquote automatic color for text * @return the auto text color field value. */ public boolean isAutoTextColor() { return autoTextColor.isSet(field_8_options); } /** * Sets the auto text background field value. * use the quote unquote automatic color for text background */ public void setAutoTextBackground(boolean value) { field_8_options = autoTextBackground.setShortBoolean(field_8_options, value); } /** * use the quote unquote automatic color for text background * @return the auto text background field value. */ public boolean isAutoTextBackground() { return autoTextBackground.isSet(field_8_options); } /** * Sets the rotation field value. * rotate text (0=none, 1=normal, 2=90 degrees counterclockwise, 3=90 degrees clockwise) */ public void setRotation(short value) { field_8_options = rotation.setShortValue(field_8_options, value); } /** * rotate text (0=none, 1=normal, 2=90 degrees counterclockwise, 3=90 degrees clockwise) * @return the rotation field value. */ public short getRotation() { return rotation.getShortValue(field_8_options); } /** * Sets the autorotate field value. * automatically rotate the text */ public void setAutorotate(boolean value) { field_8_options = autorotate.setShortBoolean(field_8_options, value); } /** * automatically rotate the text * @return the autorotate field value. */ public boolean isAutorotate() { return autorotate.isSet(field_8_options); }} // END OF CLASS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -