(ordinal, bits, name)
| 24 | |
| 25 | |
| 26 | function ErrorCorrectionLevel(ordinal, bits, name) |
| 27 | { |
| 28 | this.ordinal_Renamed_Field = ordinal; |
| 29 | this.bits = bits; |
| 30 | this.name = name; |
| 31 | this.__defineGetter__("Bits", function() |
| 32 | { |
| 33 | return this.bits; |
| 34 | }); |
| 35 | this.__defineGetter__("Name", function() |
| 36 | { |
| 37 | return this.name; |
| 38 | }); |
| 39 | this.ordinal=function() |
| 40 | { |
| 41 | return this.ordinal_Renamed_Field; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | ErrorCorrectionLevel.forBits=function( bits) |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected