Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java84
1 files changed, 42 insertions, 42 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java
index 789e10f50..d79ff013b 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroImage.java
@@ -23,55 +23,55 @@ import org.w3c.dom.Element;
*/
public class IntroImage extends AbstractBaseIntroElement {
- protected static final String TAG_IMAGE = "img"; //$NON-NLS-1$
+ protected static final String TAG_IMAGE = "img"; //$NON-NLS-1$
- private static final String ATT_SRC = "src"; //$NON-NLS-1$
- private static final String ATT_ALT = "alt"; //$NON-NLS-1$
- private static final String ATT_TITLE = "title"; //$NON-NLS-1$
+ private static final String ATT_SRC = "src"; //$NON-NLS-1$
+ private static final String ATT_ALT = "alt"; //$NON-NLS-1$
+ private static final String ATT_TITLE = "title"; //$NON-NLS-1$
- private Element element;
- private String src;
- private String base;
+ private Element element;
+ private String src;
+ private String base;
- IntroImage(Element element, Bundle bundle, String base) {
- super(element, bundle);
- this.element = element;
- this.base = base;
- }
+ IntroImage(Element element, Bundle bundle, String base) {
+ super(element, bundle);
+ this.element = element;
+ this.base = base;
+ }
- /**
- * @return Returns the alt.
- */
- public String getAlt() {
- return getAttribute(element, ATT_ALT);
- }
+ /**
+ * @return Returns the alt.
+ */
+ public String getAlt() {
+ return getAttribute(element, ATT_ALT);
+ }
- /**
- * @return Returns the title.
- */
- public String getTitle() {
- return getAttribute(element, ATT_TITLE);
- }
+ /**
+ * @return Returns the title.
+ */
+ public String getTitle() {
+ return getAttribute(element, ATT_TITLE);
+ }
- @Override
+ @Override
public int getType() {
- return AbstractIntroElement.IMAGE;
- }
+ return AbstractIntroElement.IMAGE;
+ }
- /**
- * @return Returns the src value, already resolved as a local url.
- */
- public String getSrc() {
- if (src==null)// Resolve src.
- src = BundleUtil.getResolvedResourceLocation(base, getSrcAsIs(), getBundle());
- return src;
- }
+ /**
+ * @return Returns the src value, already resolved as a local url.
+ */
+ public String getSrc() {
+ if (src==null)// Resolve src.
+ src = BundleUtil.getResolvedResourceLocation(base, getSrcAsIs(), getBundle());
+ return src;
+ }
- /**
- * @return Returns the src value, as is, without resolving it as a local
- * url. The src value is relative to the parent plugin.
- */
- public String getSrcAsIs() {
- return getAttribute(element, ATT_SRC);
- }
+ /**
+ * @return Returns the src value, as is, without resolving it as a local
+ * url. The src value is relative to the parent plugin.
+ */
+ public String getSrcAsIs() {
+ return getAttribute(element, ATT_SRC);
+ }
}

Back to the top