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);
}
}
Aggregations