/**
* We will initialize file contents with a sample text.
*/
private InputStream openContentStream(IFile file) {
SourceFileType type = page.getSourFileType();
StringBuilder sb = new StringBuilder();
switch (type) {
case PACKAGE_FILE:
sb.append("package ").append(file.getParent().getName()).append("\n");