Le document suivant contient les résultats de l'inspection CPD CPD 5.3.5.
| Fichier | Ligne |
|---|---|
| fr/paris/lutece/plugins/shoppingcart/business/ShoppingCartItem.java | 93 |
| fr/paris/lutece/plugins/shoppingcart/business/ShoppingCartItemFilter.java | 57 |
public String getIdProvider( )
{
return _strIdProvider;
}
/**
* Sets the id of the service that provides the item
* @param strIdProvider The id of the service that provides the item
*/
public void setIdProvider( String strIdProvider )
{
_strIdProvider = strIdProvider;
}
/**
* Returns the id of the lot
* @return The id of the lot
*/
public int getIdLot( )
{
return _nIdLot;
}
/**
* Sets the id of the lot
* @param nIdLot The id of the lot
*/
public void setIdLot( int nIdLot )
{
_nIdLot = nIdLot;
}
/**
* Returns the id of the user
* @return The id of the user
*/
public String getIdUser( )
{
return _strIdUser;
}
/**
* Sets the id of the user
* @param strIdUser The id of the user
*/
public void setIdUser( String strIdUser )
{
_strIdUser = strIdUser;
}
/**
* Returns the type of the resource added to the shopping cart
* @return The type of the resource added to the shopping cart
*/
public String getResourceType( )
{
return _strResourceType;
}
/**
* Sets the type of the resource added to the shopping cart
* @param strResourceType The type of the resource added to the shopping
* cart
*/
public void setResourceType( String strResourceType )
{
_strResourceType = strResourceType;
}
/**
* Returns the id of the resource added to the shopping cart
* @return The id of the resource added to the shopping cart
*/
public String getIdResource( )
{
return _strIdResource;
}
/**
* Sets the id of the resource added to the shopping cart
* @param strIdResource The id of the resource added to the shopping cart
*/
public void setIdResource( String strIdResource )
{
_strIdResource = strIdResource;
}
/**
* Returns the price of the item
* @return The price of the item
*/
public double getItemPrice( )
{
return _dItemPrice;
}
/**
* Sets the price of the item
* @param dItemPrice The price of the item
*/
public void setItemPrice( double dItemPrice )
{
_dItemPrice = dItemPrice;
}
/**
* Get the creation date of this shopping item
* @return The creation date of this shopping item
*/
public Date getDateCreation( ) | |