Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import javax.lang.model.element.Element;
- public class Punto2 {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Mostrador<Element> m = new Mostrador<Element>();
- while(true) {
- Cliente cliente = new Cliente(m);
- Factura factura = new Factura(m);
- Bizcocho bizcocho = new Bizcocho(m);
- cliente.start();
- factura.start();
- bizcocho.start();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement