| Author |
getting string from textarea in scala
|
phillip nash
Greenhorn
Joined: Feb 08, 2011
Posts: 16
|
|
Hello all!
I'm starting out learning how to use scala, but I'm finding the transition very tricky.
I'm writing a simple application where I enter text in a TextField and when I click "Show" it shows the text within the TextField
within the console.
In java all I need to do was to use ".getText()" to the the text from a JTextField.
How can I do this in scala? Or is it even possible?
Thanks
|
 |
Mohamed Sanaulla
Bartender
Joined: Sep 08, 2007
Posts: 2946
|
|
|
Can you provide the code you are trying?
|
Mohamed Sanaulla | My Blog
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12950
|
|
|
If it's still a JTextField, then you can do exactly the same in Scala as you did in Java - just call .getText() on it to get the text.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Marimuthu Madasamy
Ranch Hand
Joined: Jun 07, 2007
Posts: 72
|
|
|
If you are using Scala swing's 'TextField' http://www.scala-lang.org/api/current/scala/swing/TextField.html, you can use 'text' method on the TextField to get the text.
|
- Marimuthu Madasamy
|
 |
 |
|
|
subject: getting string from textarea in scala
|
|
|