*/
public Object parse(Element element) {
//assert element.getName().equalsIgnoreCase("matvideo");
String uri = element.attributeValue("uri");
if(uri != null && uri.length() > 0) {
Matvideo mat = new Matvideo(uri);
String videotype = element.attributeValue("videotype");
if (videotype != null) mat.setVideotype(videotype);
String width = element.attributeValue("width");
if (width != null) mat.setWidth(width);
String height = element.attributeValue("height");
if (height != null) mat.setHeight(height);
return mat;
}
return null;
}