Example #1
0
  /**
   * Process an "appinfo" element.
   *
   * @param element The "appinfo" element.
   */
  protected void processAppInfo(Element element) {

    // get the annotation object
    SchemaObject current = getCurrentObject();
    if (current instanceof Annotation) {
      Annotation annotation = (Annotation) current;
      AppInfo appinfo = new AppInfo();
      appinfo.setElements(element.getChildren());
      annotation.setAppInfo(appinfo);
    }
  }