-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConstants.java
26 lines (21 loc) · 942 Bytes
/
Constants.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* @author ashraf_sarhan
*
*/
public class Constants {
public static final Object[] TABLE_HEADER = { "Symbol", "Company Name",
"Price", "Change", "% Change", "Volume" };
public static final Object[][] DATA = {
{ "BAC", "Bank of America Corporation", 15.98, 0.14, "+0.88%",
32157250 },
{ "AAPL", "Apple Inc.", 126.57, -1.97, "-1.54%", 31367143 },
{ "ABBV", "AbbVie Inc.", 57.84, -2.43, "-4.03%", 30620258 },
{ "ECA", "Encana Corporation", 11.74, -0.53, "-4.33%", 27317436 },
{ "VALE", "Vale S.A.", 6.55, -0.33, "-4.80%", 19764400 },
{ "FB", "Facebook, Inc.", 81.53, 0.64, "+0.78%", 16909729 },
{ "PBR", "Petróleo Brasileiro S.A. - Petrobras", 6.05, -0.12,
"-2.02%", 16181759 },
{ "NOK", "Nokia Corporation", 8.06, 0.01, "+0.12%", 13611860 },
{ "PCYC", "Pharmacyclics Inc.", 254.67, 24.19, "+10.50%", 13737834 },
{ "RAD", "Rite Aid Corporation", 7.87, -0.18, "-2.24%", 13606253 } };
}