How to find the details of Java classes in Sun Java Studio Creator
Dear all,
I am new to Java and I found that the Java Studio Creator is a very good IDE for application developer. However, I have no ideaes where I can find the java classes (include the properties, methods and samples) that can be use in this IDE.
Like the following example, I follow the tutorial and it works, but I don't know the syntax
e.g. getSessionBean1().getDoc_detailRowSet().setObject()
Where can I find JAVA classes and its details in IDE?
Thanks!
[498 byte] By [
KaneKana] at [2007-11-26 22:48:02]

# 1
The auto completion will show you the detail of the methods, properties available for the class. Also, if you know the class, you can point the cursor on the class, and then right-click it and choose the javadoc. It will pop up the complete javadoc for the class.
If you see in the top section of your java page, there are import statements such as:
import com.sun.data.provider.RowKey;
import com.sun.rave.web.ui.appbase.AbstractPageBean;
just move your cursor to those classes, and rightclick and choose show javadoc (or alt-F1). You will get a lot of information there.
As for your example, if you type getSessionb and then press ctrl+space it will try to complete the line for you. If there are a lot of option, you will see small windows that you can select the correct statement.
Just explore it. The IDE is fantastic.
Hope it helps