package com.jamonapi.utils;

/** Interface used to return info from a monitor.  Primarily will be used in the JAMonBufferListener
 *  class.
 *  
 * @author steve souza
 *
 */
public interface ToArray {
  public Object[] toArray();
}
