blob: 25a1a23379bacb3fee124fc9ea0bc644ac500e1f [file] [log] [blame]
Meki Cherkaouif441d3a2012-04-22 15:17:52 -07001/*
2 * @author: ucla-cs
3 * This class represents ExcludeAny objects
4 */
5
6var ExcludeAny = function ExcludeAny() {
7
8};
9
10ExcludeAny.prototype.decode = function(decoder) {
11 decoder.readStartElement(this.getElementLabel());
12 decoder.readEndElement();
13};
14
15
16ExcludeAny.prototype.encode = function( encoder) {
17 encoder.writeStartElement(this.getElementLabel());
18 encoder.writeEndElement();
19};
20
21ExcludeAny.prototype.getElementLabel=function() { return CCNProtocolDTags.Any; };