You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@taverna.apache.org by Upeksha-Iwanthi <gi...@git.apache.org> on 2017/09/25 15:50:38 UTC

[GitHub] incubator-taverna-workbench pull request #8: Update WorkbenchImpl.java

GitHub user Upeksha-Iwanthi opened a pull request:

    https://github.com/apache/incubator-taverna-workbench/pull/8

    Update WorkbenchImpl.java

    Instead of passing String type parameters for message and title in showMessageDialog(), two JTextArea()s pass as the parameters. 
    String type message and String type title add to the two JTextArea()s and then those JTextArea()s pass to the showMessageDialog().
    Before pass the JTextAreas, set Editable by using message.setEditable(true).

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/Upeksha-Iwanthi/incubator-taverna-workbench master

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-taverna-workbench/pull/8.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #8
    
----
commit 087b760ec625f6e9526376423baee52ceff8506e
Author: Upeksha-Iwanthi <up...@gmail.com>
Date:   2017-09-25T15:46:07Z

    Update WorkbenchImpl.java
    
    Instead of passing String type parameters for message and title in showMessageDialog(), two JTextArea()s pass as the parameters. 
    String type message and String type title add to the two JTextArea()s and then those JTextArea()s pass to the showMessageDialog().
    Before pass the JTextAreas, set Editable by using message.setEditable(true).

----


---