protected Object createObject(Element element, String[] attributeNames, String[] attributes) {
int type = 0;
if (Links.STR_SYSTEM_PATH.equals(attributes[2])) {
type = Links.SYSTEM_PATH;
}
ILink link = new Link(attributes[0], attributes[1], type);
return link;
}