Articles, Home

Java Generic Methods

It is possible to generify methods in Java. Here is an example: public static T addAndReturn(T element, Collection collecti….

Articles, Home

Java DOM Tutorial

Document Object Model (DOM) is a standard tree structure, where each node contains one of the components from an XML structure. Element nodes and text nodes are the two most common types of nodes. With DOM functions we can create nodes, remove nodes, change their contents, and traverse the node hierarchy.