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 27 28 29 30 |
var ExampleClass = function(fooValue, barValue){ //private Attribute var foo, bar //private Methode function fooPrivate(){ } //foo Setter this.setFoo = function(value){ foo = value; } //foo Getter this.getFoo = function(){ return foo; } //bar Setter this.setBar = function(value){ bar = value; } //bar Getter this.getBar = function(){ return bar; } //Konstruktorcode this.setFoo(fooValue); this.setBar(barValue); } |