public class Sample implements java.io.Serializable
{
//getter
//setter
}
What pattern is this one ?
-
public class Sample implements java.io.Serializable (2 messages)
- Posted by: alin alin
- Posted on: November 14 2005 05:03 EST
Threaded Messages (2)
- public class Sample implements java.io.Serializable by ranji c on November 15 2005 10:14 EST
-
public class Sample implements java.io.Serializable[ Go to top ]
- Posted by: ranji c
- Posted on: November 15 2005 10:14 EST
- in response to alin alin
You may call it "Bean Pattern" for the heck of it.
Normally "Data Transfer" Objects or "Value Objects" look like this.
But I do not see any pattern here other than "inheritance" -
Thank you[ Go to top ]
- Posted by: alin alin
- Posted on: November 16 2005 04:38 EST
- in response to ranji c
Thank you