It turns out it isnt as straight forward as desktop Eclipse.
- Create a bin folder
- Go to the command tab on the left hand side of the IDS (I didn't have Run>Edit Commands tab for reasons I'm yet to understand)
- Add a new command
I had to add
cd ${current.project.path}
javac -classpath ${project.java.classpath} -sourcepath ${project.java.sourcepath} -d ${project.java.output.dir} src/Console/TBB_SQLBuilder.java
java -classpath ${project.java.classpath}${project.java.output.dir} TBB_SQLBuilder
to get it to run.
I note the question has been downvoted. I suppose some thought this might be straightforwrd but it is worth noting that this is very different to the desktop IDE which provides a UI to create the run configuration. Che seems to rely on creating commands from a command line box in the command interface.