This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <junit fork="yes" printsummary="yes"> | |
| <classpath refid="emma.classpath" /> | |
| <!-- general stuff --> | |
| <classpath> | |
| <!-- the test classes. --> | |
| <pathelement location="bin" /> | |
| <!-- contains junit and other dependencies --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setListAdapter(new BaseAdapter() { | |
| public int getCount() { | |
| return expenses.size(); | |
| } | |
| public Object getItem(int position) { | |
| return expenses.get(position); | |
| } | |
NewerOlder