source: rtems-eclipse-plug-in/org.rtems.cdt.toolchain2/org/rtems/cdt/properties/PropertyPage.java @ 3a85b45

Last change on this file since 3a85b45 was 3a85b45, checked in by Sebastian Huber <sebastian.huber@…>, on 11/25/08 at 14:37:10

Added preferences.

  • Property mode set to 100644
File size: 758 bytes
Line 
1/*
2 * Copyright (c) 2008
3 * Embedded Brains GmbH
4 * Obere Lagerstr. 30
5 * D-82178 Puchheim
6 * Germany
7 * rtems@embedded-brains.de
8 *
9 * The license and distribution terms for this file may be found in the file
10 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
11 */
12
13package org.rtems.cdt.properties;
14
15import org.eclipse.swt.widgets.Composite;
16import org.eclipse.swt.widgets.Control;
17import org.eclipse.ui.IWorkbenchPropertyPage;
18
19public class PropertyPage
20        extends org.eclipse.ui.dialogs.PropertyPage
21        implements IWorkbenchPropertyPage {
22
23        public PropertyPage() {
24                // TODO Auto-generated constructor stub
25        }
26
27        @Override
28        protected Control createContents(Composite parent) {
29                // TODO Auto-generated method stub
30                return null;
31        }
32
33}
Note: See TracBrowser for help on using the repository browser.