News

This post explains how to use variables in Java. Learn the primitive types (and what that means) and just why variables are so important for any coding!
Typesafe enums offer a better alternative to Java's traditional enumerated types. Here's how to use typesafe enums correctly in your Java code.
Abstract classes and interfaces in Java serve fundamentally different purposes. Learn the differences between these Java language elements and how to use them in your programs.
What would be the best way to share variables/objects between different GUI elements in java? Basically I have several ArrayList objects I want my modal dialogs to have access to. Also, where is ...