Last change
on this file since 341 was 310, checked in by Rick van der Zwet, 13 years ago |
Hacking with javascript and various other foo.
|
File size:
309 bytes
|
Line | |
---|
1 | package nl.rickvanderzwet.toos.assignment2;
|
---|
2 |
|
---|
3 | public class VoterWrapTest extends Voter {
|
---|
4 | public getVote_counter = 0;
|
---|
5 |
|
---|
6 | public Boolean getVote() {
|
---|
7 | getVote_counter++;
|
---|
8 | return super.getVote();
|
---|
9 | }
|
---|
10 |
|
---|
11 | }
|
---|
12 |
|
---|
13 | public class Voter {
|
---|
14 | public Boolean getVote() {
|
---|
15 | return fvote;
|
---|
16 | }
|
---|
17 |
|
---|
18 | public Boolean fvote;
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.