I need help with the object-orientation issue.
I need to implement the Parcelable
class in the Produto
model, but for the sake of organization, I would not like to implement directly in the Produto
class but to create a new ProdutoParcelable
class and implement it there and make the class Produto
identify this implementation or "develop" this implementation.
The detail is that in the possible class ProdutoParcelable
I will need the attributes of class Produto
.
public class Produto extends ProdutoParcelable
public class ProdutoParcelable implements Parcelable
//Aqui vou precisar dos atributos de Produto