Installa Steam
Accedi
|
Lingua
简体中文 (cinese semplificato)
繁體中文 (cinese tradizionale)
日本語 (giapponese)
한국어 (coreano)
ไทย (tailandese)
Български (bulgaro)
Čeština (ceco)
Dansk (danese)
Deutsch (tedesco)
English (inglese)
Español - España (spagnolo - Spagna)
Español - Latinoamérica (spagnolo dell'America Latina)
Ελληνικά (greco)
Français (francese)
Indonesiano
Magyar (ungherese)
Nederlands (olandese)
Norsk (norvegese)
Polski (polacco)
Português (portoghese - Portogallo)
Português - Brasil (portoghese brasiliano)
Română (rumeno)
Русский (russo)
Suomi (finlandese)
Svenska (svedese)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraino)
Segnala un problema nella traduzione
private String itemName;
private int itemPrice;
private int itemQuantity;
public ItemToPurchase() {
this.itemName = "none";
this.itemPrice = 0;
this.itemQuantity = 0;
}
public void setName(String itemName) {
this.itemName = itemName;
}
public void setPrice(int itemPrice) {
this.itemPrice = itemPrice;
}
public void setQuantity(int itemQuantity) {
this.itemQuantity = itemQuantity;
}
public String getName() {
return itemName;
}
public int getPrice() {
return itemPrice;
}
public int getQuantity() {
return itemQuantity;
}
}