RSS Feed for OthersCategory: Others

Writing Easily Maintainable Code ? »

Download Source Code This is the design pattern I came across while browsing through my RSS feed reader. Not very confirmed now from where I read about this. It is quite hard to apply this to the data access layer since I use ORM tools but I am not sure how this can be applied […]

Java Fluent Interface – Return Instance from Set Method »

Normally we create a class with the constructor, set/get methods as below public class Person { private String name; private Integer age; private String email; public Person() { } public Person(String name, Integer age, String email) { this.name = name; this.age = age; this.email = email; } public String getName() { return name; } public […]