1// Extracted from http://dev.w3.org/2006/webapi/WebIDL/ on 2011-05-06
2[Constructor]
3interface Student {
4  attribute unsigned long id;
5  attribute DOMString? familyName;
6  attribute DOMString givenName;
7
8  stringifier DOMString ();
9};