Re: [docbook-apps] oointerface - writing a synopsis for a Java interface

From
Bob Stayton <>
Date
2006-12-11T01:05:01+00:00
ID
172701c71cc0$6e094bb0$6400a8c0@totoro
Thread
Re: [docbook-apps] oointerface - writing a synopsis for a Java interface
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&lt;T&gt;</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?