01: /*******************************************************************************
02: * Copyright (c) 2007 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.plugin;
11:
12: import org.eclipse.pde.internal.ui.editor.PDEDetails;
13: import org.eclipse.pde.internal.ui.editor.PDESection;
14:
15: /**
16: * AbstractPluginElementDetails
17: *
18: */
19: public abstract class AbstractPluginElementDetails extends PDEDetails {
20:
21: private PDESection fMasterSection;
22:
23: /**
24: * @param masterSection
25: */
26: public AbstractPluginElementDetails(PDESection masterSection) {
27: fMasterSection = masterSection;
28: }
29:
30: /**
31: * @return
32: */
33: public PDESection getMasterSection() {
34: return fMasterSection;
35: }
36:
37: }
|