Package org.jreliability.gui.aspect
Interface Aspect
- All Known Implementing Classes:
AbstractAspect
,DensityAspect
,FailureRateAspect
,ReliabilityFunctionAspect
,UnreliabilityFunctionAspect
public interface Aspect
The
Aspect
allows to determine the y-value
for the
ReliabilityFunction
y = R(x)
under the current
Aspect
.-
Method Summary
Modifier and TypeMethodDescriptiondouble
getLower
(ReliabilityFunction reliabilityFunction) Returns the lower bound of theReliabilityFunction
under the currentAspect
.getName()
Returns the name of theAspect
.double
getUpper
(ReliabilityFunction reliabilityFunction) Returns the upper bound of theReliabilityFunction
under the currentAspect
.getXAxis()
Returns the label for the x-axis .getY
(double x, ReliabilityFunction reliabilityFunction) getYAxis()
Returns the label for the x-axis.
-
Method Details
-
getY
- Parameters:
x
- the x-valuereliabilityFunction
- the reliabilityFunction- Returns:
- the y-value for the reliabilityFunction y = R(x) under the current aspect
-
getName
String getName()Returns the name of theAspect
.- Returns:
- the name of the aspect
-
getXAxis
String getXAxis()Returns the label for the x-axis .- Returns:
- the label for the x-axis
-
getYAxis
String getYAxis()Returns the label for the x-axis.- Returns:
- the label for the y-axis
-
getLower
Returns the lower bound of theReliabilityFunction
under the currentAspect
.- Parameters:
reliabilityFunction
- the reliabilityFunction- Returns:
- the lower bound of the reliability Function
-
getUpper
Returns the upper bound of theReliabilityFunction
under the currentAspect
.- Parameters:
reliabilityFunction
- the reliabilityFunction- Returns:
- the upper bound of the reliabilityFunction
-