Advertisement
spiny94

Untitled

Sep 5th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. public class Colore {
  2.  
  3.     private String nome;
  4.     public Colore(String nome) {
  5.         this.nome = nome;
  6.     }
  7.  
  8.     public String getNome(){
  9.         return nome;
  10.     }}
  11. public class Materiale {
  12.  
  13.     private String nome;
  14.     private double costo;
  15.  
  16.     public Materiale(String nome, double costo) {      
  17.         this.nome = nome;
  18.         this.costo = costo;
  19.     }
  20.  
  21.     public String getNome(){
  22.         return  nome;
  23.     }
  24.  
  25.     public double getCosto(){
  26.         return costo;
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement