blob: cfe038ac60cb84656bb3a24f1ace71d2e9621d03 [file] [log] [blame]
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.tools.xjc.servlet;
import java.io.IOException;
import com.sun.xml.bind.webapp.AbstractTagImpl;
/**
* Custom tag that generates the heading.
*
* Synopsis:
*
* <pre><xmp>
* <header title="caption>
* some body text
* </head>
* </xmp></pre>
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
*/
public class HeaderTag extends AbstractTagImpl {
private String title;
public void setTitle( String title ) {
this.title = title;
}
public int startTag() throws IOException {
String image = getRequest().getContextPath()+"/javaxml.gif";
context.getOut().write(
"<table width=100%><tr><td>"+
"<img style='float:left' src="+image+">"+
"</td><td width=100%>"+
"<h1>"+
title+
"</h1>"
);
return EVAL_BODY_INCLUDE;
}
public int endTag() throws IOException {
context.getOut().write("<td></tr></table>");
return EVAL_PAGE;
}
}