if (!settings.ENABLED_EMBED_JAVA) return;
JFlexJavaCode host = (JFlexJavaCode) _host;
assert host.getContainingFile() instanceof JFlexPsiFile;
JFlexPsiFile file = (JFlexPsiFile) host.getContainingFile();
JFlexJavaCode importSection = file.getImports();
//processing imports and package section
if (importSection == host) {
registrar.addPlace(StdLanguages.JAVA, new TextRange(0, host.getTextLength()), null, "\npublic class a{}");
return;
}
StringBuilder prefix = new StringBuilder();
//let's add some imports and package statements from flex file header
if (importSection != null) {
prefix.append(importSection.getText());
}
String classnamestr = DEFCLASS;
JFlexElement classname = file.getClassname();
if (classname != null) {
classnamestr = classname.getText();
}
String returntypestr = DEFTYPE;
JFlexElement returntype = file.getReturnType();
if (returntype != null) {
returntypestr = returntype.getText();
}
StringBuilder implementedstr = new StringBuilder();
JFlexElement[] implemented = file.getImplementedInterfaces();
//what a lousy piece of code.
if (implemented.length > 0) {
implementedstr.append(" implements ");
for (int i = 0; i < implemented.length; i++) {
JFlexElement jFlexElement = implemented[i];