Tutorial Java 6 – #4.3 Matrixes and Multidimensional Arrays

In this post we will see what are and how to define multidimensional arrays. The most common multidimensional array is the matrix – a two dimension array. Despite the fact in our mind a two-dimension array is like a table, a matrix is in Java an array of arrays, like in this image (a two-dimension […]

Read More →
Tutorial Java 6 – #4 Arrays

In this topic we will see how we define and process arrays data structures in Java. An array is a particular form of Java object that is used to store a homogeneous list of elements (each element of the vector has the same type as vector type – the base type). The number of elements […]

Read More →
Tutorial Java 6 – #2.1 How to write or generate JavaDoc comments

In software programming it is important to document the source code, because: you will have a clear picture of complex Java projects with many classes or modules; you will be able, later, to understand what was done so that you can modify, add or delete it. For Java applications, documentation is usually supplied in HTML […]

Read More →
Tutorial Java – Contents

This Java tutorial covers all important Java 6 and 7 topics and allows a new programmer to learn the concepts, the know-how and the syntax elements of Java programming language. Also the tutorial highlights important topics for the SCJP certification exam.

Read More →
How to make a Line Chart in Flex with static data

The following example shows how you can create a LineChart in Flex by using static data from an array. The chart is created in MXML without any ActionScript code. The example shows you how you can create a simple animated chart without knowing ActionScript (with ActionScript you can create more dynamic and interactive charts, but […]

Read More →