01: package com.jamonapi.utils;
02:
03: /** Interface used to return info from a monitor. Primarily will be used in the JAMonBufferListener
04: * class.
05: *
06: * @author steve souza
07: *
08: */
09: publicinterface ToArray {
10: publicObject[] toArray();
11: }