Rev 8664 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.amazonaws.mws.samples;public class ItemSale {int orderCount;double sale;public int getOrderCount() {return orderCount;}public void setOrderCount(int orderCount) {this.orderCount = orderCount;}public double getSale() {return sale;}public void setSale(double sale) {this.sale = sale;}}