KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > cheatsheet > comp > CompCSIntro


1 /*******************************************************************************
2  * Copyright (c) 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.pde.internal.core.cheatsheet.comp;
13
14 import org.eclipse.pde.internal.core.icheatsheet.comp.ICompCSIntro;
15 import org.eclipse.pde.internal.core.icheatsheet.comp.ICompCSModel;
16 import org.eclipse.pde.internal.core.icheatsheet.comp.ICompCSObject;
17
18 /**
19  * CompCSIntro
20  *
21  */

22 public class CompCSIntro extends CompCSDataObject implements ICompCSIntro {
23
24     /**
25      *
26      */

27     private static final long serialVersionUID = 1L;
28
29     /**
30      * @param model
31      * @param parent
32      */

33     public CompCSIntro(ICompCSModel model, ICompCSObject parent) {
34         super(model, parent);
35         reset();
36     }
37
38     /* (non-Javadoc)
39      * @see org.eclipse.pde.internal.core.cheatsheet.comp.CompCSDataObject#getElement()
40      */

41     public String JavaDoc getElement() {
42         return ELEMENT_INTRO;
43     }
44
45     /* (non-Javadoc)
46      * @see org.eclipse.pde.internal.core.cheatsheet.comp.CompCSDataObject#getType()
47      */

48     public int getType() {
49         return TYPE_INTRO;
50     }
51
52 }
53
Popular Tags