fr.ifremer.isisfish.entities
Interface Gear

All Superinterfaces:
Serializable, org.nuiton.topia.persistence.TopiaEntity
All Known Implementing Classes:
GearAbstract, GearImpl

public interface Gear
extends org.nuiton.topia.persistence.TopiaEntity


Field Summary
static String COMMENT
           
static String COST
           
static String EFFORT_UNIT
           
static String NAME
           
static String PARAMETER_NAME
           
static String POPULATION_SELECTIVITY
           
static String POSSIBLE_VALUE
           
static String STANDARDISATION_FACTOR
           
 
Fields inherited from interface org.nuiton.topia.persistence.TopiaEntity
TOPIA_CREATE_DATE, TOPIA_ID, TOPIA_VERSION
 
Method Summary
 void addAllPopulationSelectivity(Collection<Selectivity> selectivity)
          addAllPopulationSelectivity :
 void addPopulationSelectivity(Selectivity selectivity)
          addPopulationSelectivity :
 void clearPopulationSelectivity()
          clearPopulationSelectivity : Vide la Collection de Selectivity .
 String getComment()
          getComment :
 double getCost()
          getCost : Coût d'achat de l'engin
 String getEffortUnit()
          getEffortUnit :
 FisheryRegion getFisheryRegion()
          getFisheryRegion :
 String getName()
          getName :
 String getParameterName()
          getParameterName :
 Collection<Selectivity> getPopulationSelectivity()
          getPopulationSelectivity :
 Selectivity getPopulationSelectivity(Population value)
          getPopulationSelectivity :
 Selectivity getPopulationSelectivityByTopiaId(String topiaId)
          getPopulationSelectivityByTopiaId : Recupère l'attribut population à partir de son topiaId
 RangeOfValues getPossibleValue()
          getPossibleValue :
 double getStandardisationFactor()
          getStandardisationFactor :
 boolean isPopulationSelectivityEmpty()
          isPopulationSelectivityEmpty :
 void removePopulationSelectivity(Selectivity selectivity)
          removePopulationSelectivity :
 void setComment(String comment)
          setComment :
 void setCost(double cost)
          setCost : Coût d'achat de l'engin
 void setEffortUnit(String effortUnit)
          setEffortUnit :
 void setName(String name)
          setName :
 void setParameterName(String parameterName)
          setParameterName :
 void setPopulationSelectivity(Collection<Selectivity> selectivity)
          setPopulationSelectivity :
 void setPossibleValue(RangeOfValues possibleValue)
          setPossibleValue :
 void setStandardisationFactor(double standardisationFactor)
          setStandardisationFactor :
 int sizePopulationSelectivity()
          sizePopulationSelectivity :
 
Methods inherited from interface org.nuiton.topia.persistence.TopiaEntity
accept, addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, delete, getAggregate, getComposite, getTopiaContext, getTopiaCreateDate, getTopiaId, getTopiaVersion, postCreate, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion, update
 

Field Detail

NAME

static final String NAME
See Also:
Constant Field Values

EFFORT_UNIT

static final String EFFORT_UNIT
See Also:
Constant Field Values

STANDARDISATION_FACTOR

static final String STANDARDISATION_FACTOR
See Also:
Constant Field Values

PARAMETER_NAME

static final String PARAMETER_NAME
See Also:
Constant Field Values

COST

static final String COST
See Also:
Constant Field Values

POSSIBLE_VALUE

static final String POSSIBLE_VALUE
See Also:
Constant Field Values

COMMENT

static final String COMMENT
See Also:
Constant Field Values

POPULATION_SELECTIVITY

static final String POPULATION_SELECTIVITY
See Also:
Constant Field Values
Method Detail

setName

void setName(String name)
setName :

Parameters:
name - La valeur de l'attribut name à positionner.

getName

String getName()
getName :

Returns:
String

setEffortUnit

void setEffortUnit(String effortUnit)
setEffortUnit :

Parameters:
effortUnit - La valeur de l'attribut effortUnit à positionner.

getEffortUnit

String getEffortUnit()
getEffortUnit :

Returns:
String

setStandardisationFactor

void setStandardisationFactor(double standardisationFactor)
setStandardisationFactor :

Parameters:
standardisationFactor - La valeur de l'attribut standardisationFactor à positionner.

getStandardisationFactor

double getStandardisationFactor()
getStandardisationFactor :

Returns:
double

setParameterName

void setParameterName(String parameterName)
setParameterName :

Parameters:
parameterName - La valeur de l'attribut parameterName à positionner.

getParameterName

String getParameterName()
getParameterName :

Returns:
String

setCost

void setCost(double cost)
setCost :

Coût d'achat de l'engin

Parameters:
cost - La valeur de l'attribut cost à positionner.

getCost

double getCost()
getCost :

Coût d'achat de l'engin

Returns:
double

setPossibleValue

void setPossibleValue(RangeOfValues possibleValue)
setPossibleValue :

Parameters:
possibleValue - La valeur de l'attribut possibleValue à positionner.

getPossibleValue

RangeOfValues getPossibleValue()
getPossibleValue :

Returns:
RangeOfValues

setComment

void setComment(String comment)
setComment :

Parameters:
comment - La valeur de l'attribut comment à positionner.

getComment

String getComment()
getComment :

Returns:
String

addPopulationSelectivity

void addPopulationSelectivity(Selectivity selectivity)
addPopulationSelectivity :

Parameters:
selectivity - L'instance de Selectivity à ajouter

addAllPopulationSelectivity

void addAllPopulationSelectivity(Collection<Selectivity> selectivity)
addAllPopulationSelectivity :

Parameters:
selectivity - Les instances de Selectivity à ajouter

setPopulationSelectivity

void setPopulationSelectivity(Collection<Selectivity> selectivity)
setPopulationSelectivity :

Parameters:
selectivity - La Collection de Selectivity à ajouter

removePopulationSelectivity

void removePopulationSelectivity(Selectivity selectivity)
removePopulationSelectivity :

Parameters:
selectivity - L'instance de Selectivity à retirer

clearPopulationSelectivity

void clearPopulationSelectivity()
clearPopulationSelectivity : Vide la Collection de Selectivity .


getPopulationSelectivity

Collection<Selectivity> getPopulationSelectivity()
getPopulationSelectivity :

Returns:
Collection

getPopulationSelectivityByTopiaId

Selectivity getPopulationSelectivityByTopiaId(String topiaId)
getPopulationSelectivityByTopiaId : Recupère l'attribut population à partir de son topiaId

Parameters:
topiaId - le topia id de l'entité recherchée
Returns:
Selectivity

getPopulationSelectivity

Selectivity getPopulationSelectivity(Population value)
getPopulationSelectivity :

Parameters:
value -
Returns:
Selectivity

sizePopulationSelectivity

int sizePopulationSelectivity()
sizePopulationSelectivity :

Returns:
int

isPopulationSelectivityEmpty

boolean isPopulationSelectivityEmpty()
isPopulationSelectivityEmpty :

Returns:
boolean

getFisheryRegion

FisheryRegion getFisheryRegion()
getFisheryRegion :

Returns:
FisheryRegion


Copyright © 1999-2011 CodeLutin. All Rights Reserved.