KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > icheatsheet > simple > ISimpleCSModelFactory


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.icheatsheet.simple;
13
14 /**
15  * ISimpleCheatSheetModelFactory
16  *
17  */

18 public interface ISimpleCSModelFactory {
19
20     /**
21      * @return
22      */

23     public ISimpleCS createSimpleCS();
24     
25     /**
26      * @return
27      */

28     public ISimpleCSAction createSimpleCSAction(ISimpleCSObject parent);
29     
30     /**
31      * @return
32      */

33     public ISimpleCSCommand createSimpleCSCommand(ISimpleCSObject parent);
34     
35     /**
36      * @return
37      */

38     public ISimpleCSConditionalSubItem createSimpleCSConditionalSubItem(ISimpleCSObject parent);
39     
40     /**
41      * @return
42      */

43     public ISimpleCSIntro createSimpleCSIntro(ISimpleCSObject parent);
44     
45     /**
46      * @return
47      */

48     public ISimpleCSItem createSimpleCSItem(ISimpleCSObject parent);
49     
50     /**
51      * @return
52      */

53     public ISimpleCSOnCompletion createSimpleCSOnCompletion(ISimpleCSObject parent);
54     
55     /**
56      * @return
57      */

58     public ISimpleCSPerformWhen createSimpleCSPerformWhen(ISimpleCSObject parent);
59     
60     /**
61      * @return
62      */

63     public ISimpleCSRepeatedSubItem createSimpleCSRepeatedSubItem(ISimpleCSObject parent);
64     
65     /**
66      * @return
67      */

68     public ISimpleCSSubItem createSimpleCSSubItem(ISimpleCSObject parent);
69     
70     /**
71      * @return
72      */

73     public ISimpleCSDescription createSimpleCSDescription(ISimpleCSObject parent);
74 }
75
Popular Tags