blob: 4a07868eb19e2417872f12b5578d7b479b8639b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.command.internal.provisional.env.core.common;
public class NullStatusHandler implements StatusHandler
{
/**
* @see org.eclipse.env.common.StatusHandler#report(org.eclipse.env.common.Status, org.eclipse.env.common.Choice[])
*/
public Choice report(Status status, Choice[] choices)
{
Choice result = null;
// Always take the first choice if available.
if( choices != null && choices.length > 0 )
{
result = choices[0];
}
return result;
}
/**
* @see org.eclipse.env.common.StatusHandler#report(org.eclipse.env.common.Status)
*/
public void report(Status status) throws StatusException
{
}
/*
* Report a warning.
*/
private boolean reportWarning(Status status)
{
return true;
}
/*
* Report and error.
*/
private boolean reportErrorStatus(Status status)
{
return false;
}
/**
* @see org.eclipse.wst.command.internal.provisional.env.core.common.StatusHandler#reportError(org.eclipse.wst.command.internal.provisional.env.core.common.Status)
*/
public void reportError(Status status)
{
reportErrorStatus( status );
}
/**
* @see org.eclipse.wst.command.internal.provisional.env.core.common.StatusHandler#reportInfo(org.eclipse.wst.command.internal.provisional.env.core.common.Status)
*/
public void reportInfo(Status status)
{
}
}