javamanager/javainstaller/installerui/javasrc/com/nokia/mj/impl/installer/ui/eswt2/ErrorDetailsView.java
author hgs
Fri, 29 Oct 2010 11:49:32 +0300
changeset 87 1627c337e51e
parent 49 35baca0e7a2e
permissions -rw-r--r--
v2.2.21_1

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/


package com.nokia.mj.impl.installer.ui.eswt2;

import com.nokia.mj.impl.utils.exception.ExceptionBase;

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

/**
 * Displays error message details.
 */
public class ErrorDetailsView extends ConfirmationViewBase
{
    private ExceptionBase iException = null;

    /** Constructor */
    protected ErrorDetailsView()
    {
        super();
    }

    /** Constructor */
    protected ErrorDetailsView(InstallerUiEswt aInstallerUi, Composite aParent)
    {
        super(aInstallerUi, aParent, 8, false, COMMAND_COMPOSITE);
        setTitle(InstallerUiTexts.get(InstallerUiTexts.INSTALL_FAILED));
        setCommands(InstallerUiTexts.get(InstallerUiTexts.OK), null);
    }

    /**
     * Synchoronous method for displaying error message details.
     */
    public boolean error(ExceptionBase aException)
    {
        iException = aException;
        boolean result = confirm();
        if (result)
        {
            log("ErrorDetailsView confirmed");
        }
        else
        {
            log("ErrorDetailsView cancelled");
        }
        return result;
    }

    /**
     * This method is called once before view is opened.
     */
    protected void createView()
    {
        /*
        // Add title.
        Label titleLabel = null;
        String title = InstallerUiTexts.get(InstallerUiTexts.INSTALL_FAILED);
        if (iInstallerUi.getInstallInfo() != null)
        {
            titleLabel = createLabel(
                getHeadingComposite(), title, getHeadingColumns()-1, SWT.WRAP);
            // Add security icon.
            iCertificates = iInstallerUi.getInstallInfo().getCertificates();
            createSecurityButton(getHeadingComposite());
        }
        else
        {
            titleLabel = createLabel(
                getHeadingComposite(), title, getHeadingColumns(), SWT.WRAP);
        }
        setCssId(titleLabel, "heading");
        */

        int horizontalSpan = getColumns();
        int labelStyle = SWT.WRAP;

        // Begin widgets creation.
        Label errorLabel = createLabel(
            iException.getDetailedMessage(), horizontalSpan, labelStyle);
        setCssId(errorLabel, "errorLabel");
        // End of widgets creation.
    }

    /**
     * This method is called after user has answered
     * to confirmation.
     * Inheriting class must implement this method.
     */
    protected void getDataFromView()
    {
        // nop
    }

    /**
     * Returns SWT style for this view.
     */
    protected int getStyle()
    {
        return SWT.V_SCROLL;
    }
}