Subversion Repositories HomeAutomation

Rev

Rev 969 | Rev 986 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 969 Rev 971
Line 87... Line 87...
87
    for (var key in this.myData)
87
    for (var key in this.myData)
88
    {
88
    {
89
        str += key + ":" + this.myData[key] + ",";
89
        str += key + ":" + this.myData[key] + ",";
90
    }
90
    }
91
   
91
   
92
    return rtrim(str, ",");
92
    return str.rtrim(",");
-
 
93
}
-
 
94
 
-
 
95
CanMessage.prototype.toString = function()
-
 
96
{
-
 
97
    return "[CanMessage] " +    this.getClassName() + ", " +
-
 
98
                    this.getDirectionFlag() + ", " +
-
 
99
                    this.getModuleName() + ", " +
-
 
100
                    this.getModuleId() + ", " +
-
 
101
                    this.getDataString();
-
 
102
                   
93
}
103
}