(int index, String name, String name2, String url, String symbol, double price, double change, double ratio)
| 46 | private final double ratio; |
| 47 | |
| 48 | public Stock(int index, String name, String name2, String url, String symbol, double price, double change, double ratio) { |
| 49 | this.index = index; |
| 50 | this.name = name; |
| 51 | this.name2 = name2; |
| 52 | this.url = url; |
| 53 | this.symbol = symbol; |
| 54 | this.price = price; |
| 55 | this.change = change; |
| 56 | this.ratio = ratio; |
| 57 | } |
| 58 | |
| 59 | public int getIndex() { |
| 60 | return index; |
nothing calls this directly
no outgoing calls
no test coverage detected