Model/TagInterface.php
author ymh <ymh.work@gmail.com>
Sun, 16 Oct 2011 14:50:48 +0200
changeset 2 13f43f53d0ba
child 5 45378793512a
permissions -rw-r--r--
first implementation

<?php
/*
 * This file is part of the WikiTagBundle package.
 *
 * (c) IRI <http://www.iri.centrepompidou.fr/>
 *
 * 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 TagInterface {
    
    /**
    * Get id
    *
    * @return integer
    */
    function getId();
    
    /**
     * Set label
     *
     * @param string $label
     */
    function setLabel($label);
    
    /**
     * Get label
     *
     * @return string
     */
    function getLabel();
    
    /**
     * Set normalizedLabel
     *
     * @param string $normalizedLabel
     */
    function setNormalizedLabel($normalizedLabel);
    
    /**
     * Get normalizedLabel
     *
     * @return string
     */
    function getNormalizedLabel();
    
    /**
     * Set originalLabel
     *
     * @param string $originalLabel
     */
    function setOriginalLabel($originalLabel);
    
    /**
     * Get originalLabel
     *
     * @return string
     */
    function getOriginalLabel();
    
    /**
     * Set alias
     *
     * @param string $alias
     */
    function setAlias($alias);
    
    /**
     * Get alias
     *
     * @return string
     */
    function getAlias();
    
    /**
     * Set wikipediaUrl
     *
     * @param string $wikipediaUrl
     */
    function setWikipediaUrl($wikipediaUrl);
    
    /**
     * Get wikipediaUrl
     *
     * @return string
     */
    function getWikipediaUrl();
    
    /**
     * Set wikipediaPageId
     *
     * @param bigint $wikipediaPageId
     */
    function setWikipediaPageId($wikipediaPageId);
    
    /**
     * Get wikipediaPageId
     *
     * @return bigint
     */
    function getWikipediaPageId();
    
    /**
     * Set urlStatus
     *
     * @param smallint $urlStatus
     */
    function setUrlStatus($urlStatus);
    
    /**
     * Get urlStatus
     *
     * @return smallint
     */
    function getUrlStatus();
    
    /**
     * Set dbpediaUri
     *
     * @param string $dbpediaUri
     */
    function setDbpediaUri($dbpediaUri);
    
    /**
     * Get dbpediaUri
     *
     * @return string
     */
    function getDbpediaUri();
    
    /**
     * Set popularity
     *
     * @param integer $popularity
     */
    function setPopularity($popularity);
    
    /**
     * Get popularity
     *
     * @return integer
     */
    function getPopularity();
    
    
}