*/
private void loadDataFromInternet() throws IOException {
URL url = new URL(DATA_RETRIVE_URL);
InputStream is = url.openStream();
try {
PHPFileParser fp = new PHPFileParser(is);
createInternalDataStructure(fp.getSections());
} finally {
is.close();
}
}