Versionen im Vergleich

Schlüssel

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

...

Wenn das Profil nicht im Rahmen einer Tollbar Toolbar bereits geladen wurde, kann ein Ladevorgang wie folgt ausgelöst werden:

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

       }
      }
    });
 
}