<?php
/**
 * ElementInterface
 *
 * @author Arkadiusz Rychlik <areksoft@gmail.com>
 */
interface Eppe_Form_ElementInterface {
	
	public function serializeValue();
	public function deserializeValue($value);
	
}