Search in sources :

Example 1 with StringRegistry

use of com.intellij.flex.uiDesigner.io.StringRegistry in project intellij-plugins by JetBrains.

the class Client method initStringRegistry.

public void initStringRegistry() throws IOException {
    StringRegistry stringRegistry = StringRegistry.getInstance();
    boolean hasError = true;
    try {
        beginMessage(ClientMethod.initStringRegistry);
        out.write(stringRegistry.toArray());
        hasError = false;
    } finally {
        finalizeMessage(hasError);
    }
}
Also used : StringRegistry(com.intellij.flex.uiDesigner.io.StringRegistry)

Aggregations

StringRegistry (com.intellij.flex.uiDesigner.io.StringRegistry)1