class Article { // Attributes int code; String label; int price; // Methods void showInfo() { System.out.println ("Code:\t"+code); System.out.println ("Label:\t"+label); System.out.println ("Price:\t"+price); } String getArticleLine() { return (code+"\t"+label+"\t"+price); } // Constructor Article (int code, String label, int price) { this.code = code; this.label = new String(label); this.price = price; } }