Im writing a plugin for bukkit (http://bukkit.org/ and using the API docs at http://jd.bukkit.org/apidocs/)

I have created a class that simply extends java.lang.Object. I can use this object on its own to create any number of instances of it, but i cannot seem to use it in an Array or a list :/

the code i have tried is as follows:

Arrays:

    public static Area[] areas = null;
    areas[0] = new Area(340, 64, -189, 20, wl);

Lists:

    public static List<Area> areaList;
    areaList.add(0, new Area(340, 64, -189, 20, wl));

(note that was something my compiler warned me to do, after i tried without it)

Does anyone know what i could be doing wrong?

it always comes up with a null pointer exception:

07:58:11 [SEVERE] Error occurred while enabling EasyProtect v1.0 (Is it up to date?): null
java.lang.NullPointerException
    at main.EasyProtect.onEnable(EasyProtect.java:41)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:920)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:278)
    at net.madjawa.pluginreloader.PluginReloader.loadPlugin(PluginReloader.java:232)
    at net.madjawa.pluginreloader.PluginReloader.onCommand(PluginReloader.java:85)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:39)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:163)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:353)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:756)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:721)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:714)
    at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:92)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:108)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:464)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:374)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
link|improve this question

14% accept rate
feedback

3 Answers

Did you instanciate your list ? Try this

public static List<Area> areaList = new ArrayList<Area>();
areaList.add(new Area(340, 64, -189, 20, wl));
link|improve this answer
feedback

You need to instantiate the array before you use it.

public static Area[] areas = new Area[100]; // or whatever
areas[0] = new Area(340, 64, -189, 20, wl);

Otherwise, when you try to use the array, you'll get a NullPointerException. The same is true for any object, including Lists

link|improve this answer
thank you very much, :D, i will try this as soon as i get home. Of course this makes a lot of sense. – user825962 Nov 23 '11 at 12:50
feedback

This is because ArrayList and Array use use are null.Use public static List<Area> areaList=new ArrayList<Area>(); or public static Area[] areas = new Area[10];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.