<?xml version="1.0" encoding="ISO-8859-1"?>
<panel columns="1" gap="4">
  <panel columns="5" top="4" left="4" bottom="4" right="4" gap="4" weightx="1" weighty="1" >
    <label text="JMS Subject:" mnemonic="5"/>
	<textfield name="jms_topic" action="validate_topic(this.text)"/>
    <label text="Your name:" mnemonic="6"/>
	<textfield name="user_id" action="validate_topic(this.text)"/>
	<button name="join_topic" text="Join!"
        	tooltip="Joins this JMS Topic so that you can send/receive messages"
        	action="doJoin(jms_topic.text, user_id.text, logarea)"/>

	<textarea name="logarea" colspan="5"/>

    <label text="Message:" mnemonic="5"/>
	<textfield name="message" colspan="3" action="validate_topic(this.text)" perform="doSend(this.text, logarea, messagearea)"/>

	<button name="send" text="Send"
        	tooltip="Sends your message to subscribers"
        	action="doSend(message.text, logarea, messagearea)"/>

	<textarea name="messagearea" colspan="6" halign="fill" valign="fill" weighty="1" />
  </panel>
</panel>
