Sorry, I just spotted the public static modifier now. You should be able to access your list anywhere in your package like this:
|
Code:
|
List data = nodes.list; |
You do not have to create an new instance nodes or extend that class. Just be careful for reading a static field with a null reference.
Did I answer your question? If not, please rephrase it.