/*
 * AxisTest.java
 *
 * Originated by Stoneware, Inc.  http://www.stone-ware.com
 *
 * The enclosed material is Stoneware Confidential and is the sole
 * property of Stoneware, Inc.  Unauthorized disclosure, distribution
 * or other use of this material is expressly prohibited.
 *
 * (c) Copyright 1999-2003 Stoneware, Inc.  All rights reserved.
 *
 * Created on March 28, 2003, 3:49 PM
 *
 * @author  <a href="mailto:Tony.Thompson@stone-ware.com">Tony Thompson</a>
 */

package com.stoneware.client;

/**
 *
 */
public class AxisTest {
    /***************************************************************************/
    /**
     * Creates a new instance of AxisTest.
     */
    public AxisTest() {
    }

    public void say( final String message ) {
        System.out.println( message );
    }

    public void say( final AxisObject obj ) {
        say( obj.getMessage() );
    }
}