1 11 12 package org.eclipse.ui.internal.intro.impl.model; 13 14 import org.osgi.framework.Bundle; 15 import org.w3c.dom.Element ; 16 17 20 public class IntroAnchor extends AbstractIntroIdElement { 21 22 protected static final String TAG_ANCHOR = "anchor"; 24 27 IntroAnchor(Element element, Bundle bundle) { 28 super(element, bundle); 29 } 30 31 36 public int getType() { 37 return AbstractIntroElement.ANCHOR; 38 } 39 40 41 } 42 | Popular Tags |