01: /*******************************************************************************
02: * Copyright (c) 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.ui.editor.cheatsheet;
11:
12: import org.eclipse.swt.widgets.Composite;
13:
14: /**
15: * CSAbstractSubDetails
16: *
17: */
18: public abstract class CSAbstractSubDetails extends CSAbstractDetails {
19:
20: /**
21: * @param masterSection
22: * @param contextID
23: */
24: public CSAbstractSubDetails(ICSMaster masterSection,
25: String contextID) {
26: super (masterSection, contextID);
27: }
28:
29: /* (non-Javadoc)
30: * @see org.eclipse.pde.internal.ui.editor.cheatsheet.CSAbstractDetails#createContents(org.eclipse.swt.widgets.Composite)
31: */
32: public void createContents(Composite parent) {
33: // NO-OP
34: // This will never be called directly because classes extending this
35: // class are subsets of a main details page
36: // To create the contents for a the subset of the main details pages,
37: // calls to the ICSDetails methods are made directly
38: }
39:
40: }
|