Meki Cherkaoui | 97e7a59 | 2012-04-14 02:50:06 -0700 | [diff] [blame^] | 1 | |
2 | var ExcludeAny = function ExcludeAny() { | ||||
3 | |||||
4 | }; | ||||
5 | |||||
6 | ExcludeAny.prototype.decode = function(decoder) { | ||||
7 | decoder.readStartElement(this.getElementLabel()); | ||||
8 | decoder.readEndElement(); | ||||
9 | }; | ||||
10 | |||||
11 | |||||
12 | ExcludeAny.prototype.encode = function( encoder) { | ||||
13 | encoder.writeStartElement(this.getElementLabel()); | ||||
14 | encoder.writeEndElement(); | ||||
15 | }; | ||||
16 | |||||
17 | ExcludeAny.prototype.getElementLabel=function() { return CCNProtocolDTags.Any; }; |