|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: How to use JAVADOCS?
Javadocs are the bible of java there are 3 main sections.
1 Constructors 2 Fields 3 Methods Constructors explain what parameters (if any) are needed to be passed to create the object. From the example above ... Code:
Joystick joy = new Joystick(1); Code:
Joystick public Joystick(int$@#port) Construct an instance of a joystick. The joystick index is the usb port on the drivers station. Parameters: port - The port on the driver station that the joystick is plugged into. Also note that if you run into a method or field that is declared static then you do not need to construct an object to use those methods or fields. An example of static call would be Code:
System.out.println("Something");
Code:
System.out = new ... |
|
#2
|
||||
|
||||
|
Re: How to use JAVADOCS?
As to your other question about sunspot for win7, there is no reason it shouldn't work. The file which installs the SDK now also recognizes 64-bit systems as valid. This is true whether you are using the NetBeans plug-ins or the Eclipse plug-ins (since the SDK for both is the same).
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|