KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > ui > editor > cheatsheet > CSAbstractSubDetails


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.ui.editor.cheatsheet;
13
14 import org.eclipse.swt.widgets.Composite;
15
16 /**
17  * CSAbstractSubDetails
18  *
19  */

20 public abstract class CSAbstractSubDetails extends CSAbstractDetails {
21
22     /**
23      * @param masterSection
24      * @param contextID
25      */

26     public CSAbstractSubDetails(ICSMaster masterSection, String JavaDoc contextID) {
27         super(masterSection, contextID);
28     }
29
30     /* (non-Javadoc)
31      * @see org.eclipse.pde.internal.ui.editor.cheatsheet.CSAbstractDetails#createContents(org.eclipse.swt.widgets.Composite)
32      */

33     public void createContents(Composite parent) {
34         // NO-OP
35
// This will never be called directly because classes extending this
36
// class are subsets of a main details page
37
// To create the contents for a the subset of the main details pages,
38
// calls to the ICSDetails methods are made directly
39
}
40     
41 }
42
Popular Tags