MessageHandler.java revision 286
609N/A/*
609N/A * reserved comment block
609N/A * DO NOT REMOVE OR ALTER!
609N/A */
609N/A/*
609N/A * Copyright 2001-2004 The Apache Software Foundation.
609N/A *
609N/A * Licensed under the Apache License, Version 2.0 (the "License");
609N/A * you may not use this file except in compliance with the License.
609N/A * You may obtain a copy of the License at
609N/A *
609N/A * http://www.apache.org/licenses/LICENSE-2.0
609N/A *
609N/A * Unless required by applicable law or agreed to in writing, software
609N/A * distributed under the License is distributed on an "AS IS" BASIS,
609N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
609N/A * See the License for the specific language governing permissions and
609N/A * limitations under the License.
609N/A */
609N/A/*
609N/A * $Id: MessageHandler.java,v 1.2.4.1 2005/09/06 11:06:49 pvedula Exp $
609N/A */
609N/A
609N/Apackage com.sun.org.apache.xalan.internal.xsltc.runtime;
609N/A
609N/A/**
609N/A * @author Morten Jorgensen
609N/A */
609N/Apublic class MessageHandler {
609N/A public void displayMessage(String msg) {
609N/A System.err.println(msg);
609N/A }
609N/A}
609N/A