Friday 26 February 2010

Trying out some code formatting.

import java.util.List;

public class MyObject
{
    /**
     * Stuff
     * @author Turbo
     */

    public void doStuff() 
    {
        // should be some stuff here.
        System.out.println("Hello, world!");
    }

}

Code formatter was found right here.

Wednesday 24 February 2010

My First Attempt At A Blog

I've decided to try my hand and this 'blog' thing. Right now it's just a way for me to write down some of my thoughts on some of the things that bother me on the current state of Software Design with Java and JEE and basically everything that's circling around it.

public class HelloWorld 
{
    public static void main(String[] args) 
    {
        System.out.println("Hello, world!");
    }
}