KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > intro > impl > model > IntroPage


1 /*******************************************************************************
2  * Copyright (c) 2004, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.ui.internal.intro.impl.model;
13
14 import org.osgi.framework.Bundle;
15 import org.w3c.dom.Element JavaDoc;
16
17 /**
18  * An Intro page.
19  */

20 public class IntroPage extends AbstractIntroPage {
21
22     /**
23      * An Intro Part page.
24      */

25     IntroPage(Element JavaDoc element, Bundle bundle, String JavaDoc base) {
26         super(element, bundle, base);
27     }
28
29     /*
30      * (non-Javadoc)
31      *
32      * @see org.eclipse.ui.internal.intro.impl.model.IntroElement#getType()
33      */

34     public int getType() {
35         return AbstractIntroElement.PAGE;
36     }
37
38 }
39
Popular Tags