use of blue.plugin.SoundObjectPlugin in project blue by kunstmusik.
the class SoundObjectPluginProcessor method handleProcess.
@Override
protected boolean handleProcess(Set<? extends TypeElement> set, RoundEnvironment env) throws LayerGenerationException {
Elements elements = processingEnv.getElementUtils();
for (Element e : env.getElementsAnnotatedWith(SoundObjectPlugin.class)) {
TypeElement clazz = (TypeElement) e;
SoundObjectPlugin sObjPlugin = clazz.getAnnotation(SoundObjectPlugin.class);
String teName = elements.getBinaryName(clazz).toString();
File f = layer(e).file("blue/score/soundObjects/" + teName.replace('.', '-') + ".instance").intvalue("position", sObjPlugin.position()).bundlevalue("displayName", sObjPlugin.displayName()).boolvalue("live", sObjPlugin.live());
f.write();
}
return true;
}
Aggregations