Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0fce6925bb95bb029332a9f61d899810b1c1b0a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2004, 2016 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.ui.internal.intro.impl.model;

import org.osgi.framework.Bundle;
import org.w3c.dom.Element;

/**
 * An intro anchor. An anchor is the only valid target for a config extension.
 */
public class IntroAnchor extends AbstractIntroIdElement {

    protected static final String TAG_ANCHOR = "anchor"; //$NON-NLS-1$

    /**
     * @param element
     */
    IntroAnchor(Element element, Bundle bundle) {
        super(element, bundle);
    }

    @Override
	public int getType() {
        return AbstractIntroElement.ANCHOR;
    }


}

Back to the top