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 IntroPageTitle extends IntroText { 21 22 protected static final String TAG_TITLE = "title"; 24 IntroPageTitle(Element element, Bundle bundle) { 25 super(element, bundle); 26 } 27 28 31 public String getTitle() { 32 return getText(); 33 } 34 35 40 public int getType() { 41 return AbstractIntroElement.PAGE_TITLE; 42 } 43 44 } 45 | Popular Tags |