Determines if the shared log is visible. @return true if visible
()
| 236 | * @return true if visible |
| 237 | */ |
| 238 | public static boolean isLogVisible() { |
| 239 | if (useMessageFrame() && MessageFrame.APPLET_MESSAGEFRAME != null) { |
| 240 | return MessageFrame.APPLET_MESSAGEFRAME.isVisible(); |
| 241 | } else if(OSPLOG!=null) { |
| 242 | return OSPLOG.isVisible(); |
| 243 | } |
| 244 | return false; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Sets the visibility of this log. |
no test coverage detected