<?php
/**
* The interface for all html helpers classes (and view classes)
* @copyright Copyright (c) 2012, PWF
* @license http://phpwebframework.com/License
* @version PWF_0.3.0
*/
interface _Html_Interface
{
/**
* Generates and return the html code of the current instance.
*/
public function generate();
}
?>