Skip to content

Instantly share code, notes, and snippets.

@Manuri
Last active August 29, 2015 14:23
Show Gist options
  • Save Manuri/b8991f2961b5d6d50e7d to your computer and use it in GitHub Desktop.
Save Manuri/b8991f2961b5d6d50e7d to your computer and use it in GitHub Desktop.
package orderprocessing.data;
/**
* Created by manurip on 6/28/15.
*/
public class Order{
private double price;
private String index;
public Order(String index, double price){
this.index = index;
this.price = price;
}
public String getIndex(){
return index;
}
public double getPrice() {
return price;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment