(ImageWindow source, int channel)
| 114 | } |
| 115 | |
| 116 | public static void setC(ImageWindow source, int channel) { |
| 117 | SyncWindows syncWindows = instance; |
| 118 | if (syncWindows==null || !syncWindows.synced(source)) |
| 119 | return; |
| 120 | DisplayChangeEvent event=new DisplayChangeEvent(source, DisplayChangeEvent.CHANNEL, channel); |
| 121 | syncWindows.displayChanged(event); |
| 122 | } |
| 123 | |
| 124 | public static void setZ(ImageWindow source, int slice) { |
| 125 | SyncWindows syncWindows = instance; |
no test coverage detected