for (Variable var : ncFile.getVariables()){
xhtml.newline();
xhtml.characters(String.valueOf(var.getDataType())); // data type
xhtml.characters(" ");
xhtml.characters(var.getNameAndDimensions()); //variable name and dimensions
xhtml.characters(";");
xhtml.newline();
for(Attribute element : var.getAttributes()){
String text = element.toString();