if (_host instanceof JFlexJavaCode) {
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) {