Monday, February 15, 2010

Source Code Test

This is a test on how to post a source code in blogger....

 
public class Record implements Serializable {
private Long id;
private String title;
private int year;
private double price;

public Record() {
}

public Record(Long id) {
this.id = id;
}

// Along with corresponding getters + setters.
}


Now I can post my source code neatly on Blogger.

Got this link on: http://heisencoder.net/2009/01/adding-syntax-highlighting-to-blogger.html

0 Comments:

Post a Comment

<< Home