[Ejtools-cvs] CVS: applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-24 21:18:41
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms In directory usw-pr-cvs1:/tmp/cvs-serv31172/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms Modified Files: QueueProxy.java TopicProxy.java Log Message: Add support for JavaBean Custom XDoclet Index: QueueProxy.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms/QueueProxy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** QueueProxy.java 15 May 2002 20:44:51 -0000 1.5 --- QueueProxy.java 24 May 2002 21:18:38 -0000 1.6 *************** *** 33,44 **** * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @todo Message sending to transform ! * @todo Other type of message to create ! * @todo More parameters for creation of message */ public class QueueProxy extends JNDIEntry --- 33,52 ---- * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @todo Message sending to transform ! * @todo Other type of message to create ! * @todo More parameters for creation of message ! * @beaninfo:class displayName="JMS Queue" shortDescription="JMS Queue" ! * @beaninfo:icons color16="/toolbarButtonGraphics/development/jms/Queue16.gif" ! * @beaninfo:property name="name" class="java.lang.String" displayName="Name" ! * shortDescription="Name of the entry" ! * @beaninfo:property name="className" class="java.lang.String" ! * displayName="Class" shortDescription="Class of the entry" ! * @beaninfo:property name="count" class="int" displayName="Message(s)" ! * shortDescription="Number of messages in Queue" */ public class QueueProxy extends JNDIEntry *************** *** 67,71 **** * Description of the Method * ! * @todo Add Log4j log */ public void browse() --- 75,81 ---- * Description of the Method * ! * @todo Add Log4j log ! * @beaninfo:method name="browse" displayName="Browse" ! * shortDescription="Browse the queue" */ public void browse() *************** *** 130,134 **** ! /** Description of the Method */ public void createMessage() { --- 140,149 ---- ! /** ! * Description of the Method ! * ! * @beaninfo:method name="createMessage" displayName="Create Message" ! * shortDescription="Create a simple message" ! */ public void createMessage() { *************** *** 176,180 **** * Description of the Method * ! * @param text Description of Parameter */ public void createTextMessage(String text) --- 191,198 ---- * Description of the Method * ! * @param text Description of Parameter ! * @beaninfo:method name="createTextMessage" displayName="Create Text ! * Message" shortDescription="Create a text message" ! * @beaninfo:param name="text" displayName="Text" */ public void createTextMessage(String text) Index: TopicProxy.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms/TopicProxy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TopicProxy.java 15 May 2002 20:44:51 -0000 1.5 --- TopicProxy.java 24 May 2002 21:18:38 -0000 1.6 *************** *** 29,37 **** * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs */ public class TopicProxy extends JNDIEntry --- 29,43 ---- * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @beaninfo:class displayName="JMS Topic" shortDescription="JMS Topic" ! * @beaninfo:icons color16="/toolbarButtonGraphics/development/jms/Topic16.gif" ! * @beaninfo:property name="name" class="java.lang.String" displayName="Name" ! * shortDescription="Name of the entry" ! * @beaninfo:property name="className" class="java.lang.String" ! * displayName="Class" shortDescription="Class of the entry" */ public class TopicProxy extends JNDIEntry *************** *** 58,62 **** * Description of the Method * ! * @param text Description of Parameter */ public void createTextMessage(String text) --- 64,71 ---- * Description of the Method * ! * @param text Description of Parameter ! * @beaninfo:method name="createTextMessage" displayName="Create Text ! * Message" shortDescription="Create a text message" ! * @beaninfo:param name="text" displayName="Text" */ public void createTextMessage(String text) |