KickJava   Java API By Example, From Geeks To Geeks.

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


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.ICompCSModel;
15 import org.eclipse.pde.internal.core.icheatsheet.comp.ICompCSObject;
16 import org.eclipse.pde.internal.core.icheatsheet.comp.ICompCSOnCompletion;
17
18 /**
19  * CompCSOnCompletion
20  *
21  */

22 public class CompCSOnCompletion extends CompCSDataObject implements
23         ICompCSOnCompletion {
24
25     /**
26      *
27      */

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

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

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

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