← Prev in month
← Prev in thread
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?
← Prev in month
← Prev in thread