diff -r 06a22ff5d58d -r 13f43f53d0ba Model/DocumentTagInterface.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Model/DocumentTagInterface.php Sun Oct 16 14:50:48 2011 +0200 @@ -0,0 +1,106 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace IRI\Bundle\WikiTagBundle\Model; + +interface DocumentTagInterface { + + /** + * Get id + * + * @return integer + */ + function getId(); + + /** + * Set originalOrder + * + * @param integer $originalOrder + */ + function setOriginalOrder($originalOrder); + + /** + * Get originalOrder + * + * @return integer + */ + function getOriginalOrder(); + + /** + * Set tagOrder + * + * @param integer $tagOrder + */ + function setTagOrder($tagOrder); + + /** + * Get tagOrder + * + * @return integer + */ + function getTagOrder(); + + /** + * Set indexNote + * + * @param float $indexNote + */ + function setIndexNote($indexNote); + + /** + * Get indexNote + * + * @return float + */ + function getIndexNote(); + + /** + * Set wikipediaRevisionId + * + * @param bigint $wikipediaRevisionId + */ + function setWikipediaRevisionId($wikipediaRevisionId); + + /** + * Get wikipediaRevisionId + * + * @return bigint + */ + function getWikipediaRevisionId(); + + /** + * Set tag + * + * @param object $tag + */ + function setTag($tag); + + /** + * Get tag + * + * @return object + */ + function getTag(); + + /** + * Set document + * + * @param object $document + */ + function setDocument($document); + + /** + * Get document + * + * @return object + */ + function getDocument(); + +} \ No newline at end of file