JavaPatternMatching/examples/OldExamples/hama/StoreSomethingPar.jav

14 lines
138 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class StoreSomethingPar<A>
{
A something;
A get()
{
return something;
}
void set(A some)
{
something = some;
}
}