New to Java programming, need a little help :3

Discussion in 'Plugin Development' started by RiotShielder, Aug 1, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    RiotShielder

    Okay, well I have experience in HTML, CSS, and php, I know a "little" about Java, however I am a fast learner. Now, All I need to know is where do I find all the functions, for example, is there a list of everything I can call? For example sender.sendMessage(""), where do I find a list of everything I can do? Sorry if I am interpreting this wrong, but I've never done this before.

    Thanks,
    Riot
     
  2. Offline

    tommycake50

    The javadocs are here.
    http://jd.bukkit.org/rb/apidocs/
    EDIT:Also if you have an ide like eclipse you can type variable.
    and then press control + space.
    and it will tell you all the variables and methods.
     
    RiotShielder likes this.
  3. Offline

    adam753

    If you're using eclipse, you can type "sender." and it should give you a lovely drop-down menu of all the inherited methods you can use on it. Alternatively, the documentation is a wonderful thing! If you want to know all the things you can do to a Player object, or just can't figure out what on Earth the "teleport" method does, you would go here and find it all laid out beautifully for you.
     
    RiotShielder and tommycake50 like this.
  4. Offline

    RiotShielder

    Thank you both so much!
     
Thread Status:
Not open for further replies.

Share This Page