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

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

Hacking with javascript and various other foo.

File size: 309 bytes
RevLine 
[310]1package nl.rickvanderzwet.toos.assignment2;
[205]2
[310]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
[205]13public class Voter {
[206]14 public Boolean getVote() {
[205]15 return fvote;
16 }
[310]17
[205]18 public Boolean fvote;
19}
Note: See TracBrowser for help on using the repository browser.