blob: 82a597046cc11783aaefbb70578c22d91654f3d7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.svg.client;
import org.apache.batik.swing.svg.SVGUserAgentAdapter;
public class SilentSVGUserAgentAdapter extends SVGUserAgentAdapter {
@Override
public void displayMessage(String message) {
}
@Override
public void displayError(String message) {
}
@Override
public void displayError(Exception ex) {
}
@Override
public void showAlert(String message) {
}
@Override
public String showPrompt(String message) {
return null;
}
@Override
public String showPrompt(String message, String defaultValue) {
return null;
}
}