Ejemplo n.º 1
0
  public void write(Device d) throws IOException {
    d.print("<script");
    if (type != null) d.print(" type=\"" + type + "\"");

    if (language != null) d.print(" language=\"" + language + "\"");

    if (urlSource != null && urlSource.getURL() != null) {
      d.print(" src=\"");
      urlSource.getURL().write(d);
      d.print("\"");
    }
    d.print("></script>");
  }
Ejemplo n.º 2
0
  public void writeSpanAttributes(Device d, SBorder border) throws IOException {

    /* thickness & type */
    d.print(getSpanAttributes(border));
  }