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 IntroSeparator extends AbstractBaseIntroElement { 21 protected static final String TAG_HR = "hr"; 23 IntroSeparator(Element element, Bundle bundle, String base) { 24 super(element, bundle); 25 } 26 27 32 public int getType() { 33 return AbstractIntroElement.HR; 34 } 35 } 36 | Popular Tags |