Converts old (pre-1.52i) type codes for the PlotObjects to the new ones, which can be used as masks
()
| 4953 | |
| 4954 | /** Converts old (pre-1.52i) type codes for the PlotObjects to the new ones, which can be used as masks */ |
| 4955 | void updateType() { |
| 4956 | type = 1<<type; |
| 4957 | } |
| 4958 | |
| 4959 | public String toString() { //for debug messages |
| 4960 | String s = "PlotObject type="+type+" flags="+flags+" xV:"+(xValues==null ? "-":yValues.length)+" yV:"+(yValues==null ? "-":yValues.length)+" label="+label+" col="+color+" fSize="+fontSize+" ff="+fontFamily; |