MCPcopy Create free account
hub / github.com/xmlet/HtmlFlow / Stock

Method Stock

htmlflow-core/src/test/java/htmlflow/test/model/Stock.java:48–57  ·  view source on GitHub ↗
(int index, String name, String name2, String url, String symbol, double price, double change, double ratio)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected