* @param type The attribute type; Needed for producing a valid dataload file.
* @param attributeName The attribute name.
* @param value The value for the attribute.
*/
public void setValue(String attributeName, String type, Object value){
IMapNode parent = getParent();
if(parent == null || !(parent instanceof MapNodeObject)){
throw new RuntimeException("Attributes must have Objects to hold them");
}
String labelname = ((MapNodeObject)parent).getLabel();
new MapNodeAttribute(parent,labelname,type,attributeName,value);