Fork me on GitHub

CPD Results

The following document contains the results of PMD's CPD 5.3.5.

Duplications

File Line
fr/paris/lutece/plugins/updatercatalog/business/CatalogPlugin.java 53
fr/paris/lutece/plugins/updatercatalog/business/CatalogPluginEntry.java 80
    public String getPluginName(  )
    {
        return _strPluginName;
    }

    /**
     * Sets the PluginName
     * @param strPluginName The PluginName
     */
    public void setPluginName( String strPluginName )
    {
        _strPluginName = strPluginName;
    }

    /**
     * Returns the PluginLocale
     * @return The PluginLocale
     */
    public String getPluginLocale(  )
    {
        return _strPluginLocale;
    }

    /**
     * Sets the PluginLocale
     * @param strPluginLocale The PluginLocale
     */
    public void setPluginLocale( String strPluginLocale )
    {
        _strPluginLocale = strPluginLocale;
    }

    /**
     * Returns the PluginDescription
     * @return The PluginDescription
     */
    public String getPluginDescription(  )
    {
        return _strPluginDescription;
    }

    /**
     * Sets the PluginDescription
     * @param strPluginDescription The PluginDescription
     */
    public void setPluginDescription( String strPluginDescription )
    {
        _strPluginDescription = strPluginDescription;
    }

    /**
     * Returns the PluginAuthor
     * @return The PluginAuthor
     */
    public String getPluginAuthor(  )
    {
        return _strPluginAuthor;
    }

    /**
     * Sets the PluginAuthor
     * @param strPluginAuthor The PluginAuthor
     */
    public void setPluginAuthor( String strPluginAuthor )
    {
        _strPluginAuthor = strPluginAuthor;
    }

    /**
     * Returns the UrlHomepage
     * @return The UrlHomepage
     */
    public String getUrlHomepage(  )
    {
        return _strUrlHomepage;
    }

    /**
     * Sets the UrlHomepage
     * @param strUrlHomepage The UrlHomepage
     */
    public void setUrlHomepage( String strUrlHomepage )
    {
        _strUrlHomepage = strUrlHomepage;
    }

    /**
     * Compare implementation to sort plugins by their name
     * @param o Object to compare
     * @return The comparaison
     */
    public int compareTo( Object o )