Data.java :  » Workflow-Engines » syrup » org » syrup » Java Open Source

Java Open Source » Workflow Engines » syrup 
syrup » org » syrup » Data.java
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();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.