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 IntroPage extends AbstractIntroPage { 21 22 25 IntroPage(Element element, Bundle bundle, String base) { 26 super(element, bundle, base); 27 } 28 29 34 public int getType() { 35 return AbstractIntroElement.PAGE; 36 } 37 38 } 39 | Popular Tags |