1 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 22 public class CompCSOnCompletion extends CompCSDataObject implements 23 ICompCSOnCompletion { 24 25 28 private static final long serialVersionUID = 1L; 29 30 34 public CompCSOnCompletion(ICompCSModel model, ICompCSObject parent) { 35 super(model, parent); 36 reset(); 37 } 38 39 42 public String getElement() { 43 return ELEMENT_ONCOMPLETION; 44 } 45 46 49 public int getType() { 50 return TYPE_ONCOMPLETION; 51 } 52 53 } 54 | Popular Tags |