Hi Eric,
That word seems to be hardwired into the template
with match="classsynopsis" in fo/synop.xsl. You would have to customize
that template to change it.
Bob Stayton
Sagehill Enterprises
DocBook Consulting
----- Original Message -----
From:
Johnson,
Eric
To:
Sent: Thursday, December 07, 2006 2:09
PM
Subject: [docbook-apps] oointerface -
writing a synopsis for a Java interface
I was creating a
synopsis for a Java interface and marked it up as
follows:
<classsynopsis
class="interface">
<oointerface>
<modifier>public</modifier>
<package>javax.xml.ws</package>
<interfacename>AsyncHandler</interfacename>
</oointerface>
<methodsynopsis>
<void />
<methodname>handleResponse</methodname>
<methodparam><type>Response<T></type><parameter>res</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
I got the
following result:
implements
javax.xml.ws.AsyncHandler {
}
is there any way
to turn the implements into interface?