1 11 12 package org.eclipse.ui.internal.intro.impl.model; 13 14 import org.eclipse.core.runtime.IConfigurationElement; 15 16 21 public class IntroStandbyContentPart extends AbstractIntroIdElement { 22 23 public static final String TAG_STANDBY_CONTENT_PART = "standbyContentPart"; 25 private static final String ATT_PLUGIN_ID = "pluginId"; private static final String ATT_CLASS = "class"; 28 private String pluginId; 29 private String className; 30 31 37 public IntroStandbyContentPart(IConfigurationElement element) { 38 super(element); 39 pluginId = element.getAttribute(ATT_PLUGIN_ID); 40 className = element.getAttribute(ATT_CLASS); 41 } 42 43 44 47 public String getClassName() { 48 return className; 49 } 50 51 54 public String getPluginId() { 55 return pluginId; 56 } 57 58 63 public int getType() { 64 return 0; 66 } 67 } 68 | Popular Tags |