package org.syrup;
/**
* Encapsulates immutable data.
*
* @author Robbert van Dalen
*/
public interface Data
{
static final String COPYRIGHT = "Copyright 2005 Robbert van Dalen."
+ "At your option, you may copy, distribute, or make derivative works under "
+ "the terms of The Artistic License. This License may be found at "
+ "http://www.opensource.org/licenses/artistic-license.php. "
+ "THERE IS NO WARRANTY; USE THIS PRODUCT AT YOUR OWN RISK.";
/**
* Returns the underlying byte array.
*
* @return The underlying byte array.
*/
public byte[] bytes();
}
|