use of org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesFileEditor in project liferay-ide by liferay.
the class PluginPackageEditor method _addPropertiesEditorPage.
private void _addPropertiesEditorPage() {
editor = new PropertiesFileEditor();
((PluginPackageModel) getModel()).addModelChangedListener(this);
// editor.setEditorPart(this);
int index;
try {
index = addPage(editor, getEditorInput());
setPageText(index, Msgs.source);
} catch (PartInitException pie) {
PortletUIPlugin.logError(pie);
}
}
Aggregations