How do I call a Java method named the same as a Scala keyword?

Viewed 1438

Possible Duplicate:
Using Java Lib with Scala Reserved Words

I'm experimenting with Scala, and a Java library I'm using has a with method on one of its objects, but with is a keyword in Scala. How do I call this method from my Scala code?

1 Answers
Related