Ejemplo n.º 1
0
  /**
   * Returns a string representation of this JApplet. This method is intended to be used only for
   * debugging purposes, and the content and format of the returned string may vary between
   * implementations. The returned string may be empty but may not be <code>null</code>.
   *
   * @return a string representation of this JApplet.
   */
  protected String paramString() {
    String rootPaneString = (rootPane != null ? rootPane.toString() : "");
    String rootPaneCheckingEnabledString = (rootPaneCheckingEnabled ? "true" : "false");

    return super.paramString()
        + ",rootPane="
        + rootPaneString
        + ",rootPaneCheckingEnabled="
        + rootPaneCheckingEnabledString;
  }