debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/UnframedMessagesConsoleFactory.java
changeset 1978 9e45f0e58c6e
parent 1977 359f06b54dcc
child 1979 59f66d6a7b33
equal deleted inserted replaced
1977:359f06b54dcc 1978:9e45f0e58c6e
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.cdt.debug.cw.symbian;
       
    19 
       
    20 import org.eclipse.ui.console.*;
       
    21 
       
    22 /**
       
    23  * Console factory is used to show the console from the Console view "Open Console"
       
    24  * drop-down action. This factory is registered via the org.eclipse.ui.console.consoleFactory 
       
    25  * extension point. 
       
    26  * 
       
    27  * @since 3.1
       
    28  */
       
    29 public class UnframedMessagesConsoleFactory implements IConsoleFactory {
       
    30 
       
    31 	public UnframedMessagesConsoleFactory() {
       
    32 	}
       
    33 	
       
    34 	public void openConsole() {
       
    35 		SymbianPlugin.getDefault().openUnframedDataConsole(true);
       
    36 	}
       
    37 }