source: liacs/TOOS2010/assignment2/src/Voter.java@ 392

Last change on this file since 392 was 310, checked in by Rick van der Zwet, 13 years ago

Hacking with javascript and various other foo.

File size: 309 bytes
Line 
1package nl.rickvanderzwet.toos.assignment2;
2
3public 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
13public 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.