Whether a given flag 'what' is set
(int what)
| 4819 | |
| 4820 | /** Whether a given flag 'what' is set */ |
| 4821 | @AstroImageJ(reason = "Implement IPlotObject for Vector Plot saving", modified = true) |
| 4822 | public boolean hasFlag(int what) { |
| 4823 | return (flags&what) != 0; |
| 4824 | } |
| 4825 | |
| 4826 | /** Sets a given flag */ |
| 4827 | void setFlag(int what) { |
no outgoing calls
no test coverage detected