~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/dialogs/StatusDialog.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2013-10-03 20:30:16 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131003203016-d4ug6l0xgosasumq
Tags: 8.2.1-1
* New upstream release.
* Updated autotools documentation sources.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************************
2
 
 * Copyright (c) 2005, 2009 IBM Corporation and others.
3
 
 * All rights reserved. This program and the accompanying materials
4
 
 * are made available under the terms of the Eclipse Public License v1.0
5
 
 * which accompanies this distribution, and is available at
6
 
 * http://www.eclipse.org/legal/epl-v10.html
7
 
 *
8
 
 * Contributors:
9
 
 *     IBM Corporation - initial API and implementation
10
 
 *     QNX Software System
11
 
 *******************************************************************************/
12
 
package org.eclipse.cdt.internal.ui.dialogs;
13
 
 
14
 
import org.eclipse.swt.widgets.Shell;
15
 
 
16
 
/**
17
 
 * @deprecated. This class is deprecated since CDT 6.1. Use {@link org.eclipse.jface.dialogs.StatusDialog} instead.
18
 
 * 
19
 
 * An abstract base class for dialogs with a status bar and ok/cancel buttons.
20
 
 * The status message must be passed over as StatusInfo object and can be
21
 
 * an error, warning or ok. The OK button is enabled or disabled depending
22
 
 * on the status.
23
 
 */
24
 
@Deprecated
25
 
public abstract class StatusDialog extends org.eclipse.jface.dialogs.StatusDialog {
26
 
        public StatusDialog(Shell parent) {
27
 
                super(parent);
28
 
                setHelpAvailable(false);
29
 
        }
30
 
}
31