0
I have this exercise to do but I’m not able to do the implementation
Using the Abstract Factory Standard, deploy Java clients from Process Manager and Memory Manager products to Linux, Mac, and Windows Operating Systems
So far all I’ve been able to do is this, I’m having a lot of doubts about how to finish this code :
public class FabricaWindows implements FabricadeGerenciador {
@Override
public void Gerenciadordeprocesso() {
// TODO Auto-generated method stub
}
@Override
public void Gerenciadordememoria() {
// TODO Auto-generated method stub
}
public class FabricaLinux implements FabricadeGerenciador {
@Override
public void Gerenciadordeprocesso() {
// TODO Auto-generated method stub
}
@Override
public void Gerenciadordememoria() {
// TODO Auto-generated method stub
}
}
public interface FabricadeGerenciador {
void Gerenciadordeprocesso();
void Gerenciadordememoria();
}
public interface Gerenciadordememoria {
}
public interface Gerenciadordeprocesso {
}