N
newbie
This is probably a too general question, thanks for any feedback in
advance.
I am trying to write a class to do transformation on a data set. I
want to make it easy to maintain in the long-run and would like to ask
here for some advice.
I want to have a class DataSet which holds the data to be transformed;
I want to have a class Transformation which transform a DataSet object
into another DataSet object. For the long-term, Transformation will be
a family of classes.
| DataSet obj1 | ---> (Transformation obj_trans) ---> | DataSet obj2
|
Does anyone have a good pattern to recommend?
advance.
I am trying to write a class to do transformation on a data set. I
want to make it easy to maintain in the long-run and would like to ask
here for some advice.
I want to have a class DataSet which holds the data to be transformed;
I want to have a class Transformation which transform a DataSet object
into another DataSet object. For the long-term, Transformation will be
a family of classes.
| DataSet obj1 | ---> (Transformation obj_trans) ---> | DataSet obj2
|
Does anyone have a good pattern to recommend?