sysmodelmgr/com.symbian.smt.gui/src/com/symbian/smt/gui/preferences/SmmPreferences.java
changeset 0 522a326673b6
equal deleted inserted replaced
-1:000000000000 0:522a326673b6
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 package com.symbian.smt.gui.preferences;
       
    17 
       
    18 import org.eclipse.jface.preference.PreferencePage;
       
    19 import org.eclipse.swt.widgets.Composite;
       
    20 import org.eclipse.swt.widgets.Control;
       
    21 import org.eclipse.ui.IWorkbench;
       
    22 import org.eclipse.ui.IWorkbenchPreferencePage;
       
    23 
       
    24 public class SmmPreferences extends PreferencePage implements
       
    25 		IWorkbenchPreferencePage {
       
    26 
       
    27 	public static final String ID = "com.symbian.smt.gui.preferences";
       
    28 
       
    29 	@Override
       
    30 	protected Control createContents(Composite parent) {
       
    31 
       
    32 		return null;
       
    33 	}
       
    34 
       
    35 	public void init(IWorkbench workbench) {
       
    36 		noDefaultAndApplyButton();
       
    37 		setDescription("Expand the tree to edit specific preferences for System Model Diagram.");
       
    38 	}
       
    39 }