Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Codeblock
languagejava
private void loadCMAnnoProfile() {
    String profileId = "<MY_ANNO_PROFILE>";
    AnnotationProfiles.get().getAnnotationProfile(profileId).addHandler(new AnnotationProfiles.Handler() {
 
    @Override
      public void onLoaded(AnnotationProfile profile) {
 
      if (profile == null) {

         throw new RuntimeException("No Profile found for " + profileId);
        }
 
    }
    });
 
}