Package org.eclipse.help.internal

Examples of org.eclipse.help.internal.Anchor


   * into this one at the current anchor, link it in.
   */
  private class AnchorHandler extends ProcessorHandler {
    public short handle(UAElement element, String id) {
      if (element instanceof Anchor) {
        Anchor anchor = (Anchor)element;
        UAElement parent = anchor.getParentElement();
        if (parent != null) {
          String anchorId = anchor.getId();
          if (anchorId != null) {
            // add to set of known anchors
            if (anchorsByContributionId == null) {
              anchorsByContributionId = new HashMap();
            }
View Full Code Here

TOP

Related Classes of org.eclipse.help.internal.Anchor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.