Interface FittingOptions
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
FittingOptionsImpl
public interface FittingOptions extends java.io.SerializableThe Interface FittingOptions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAutofit()Gets the autofit.doublegetCropBottom()Gets the crop bottom.doublegetCropLeft()Gets the crop left.doublegetCropRight()Gets the crop right.doublegetCropTop()Gets the crop top.intgetFitting()Gets the fitting.intgetRefPoint()Gets the ref point.voidsetAutofit(int autofit)Sets the autofit.voidsetCropBottom(double cropBottom)Sets the crop bottom.voidsetCropLeft(double cropLeft)Sets the crop left.voidsetCropRight(double cropRight)Sets the crop right.voidsetCropTop(double cropTop)Sets the crop top.voidsetFitting(int fitting)Sets the fitting.voidsetRefPoint(int refPoint)Sets the ref point.
-
-
-
Method Detail
-
getAutofit
int getAutofit()
Gets the autofit.- Returns:
- the autofit
-
setAutofit
void setAutofit(int autofit)
Sets the autofit.- Parameters:
autofit- the autofit to set
-
getRefPoint
int getRefPoint()
Gets the ref point.- Returns:
- the refPoint
-
setRefPoint
void setRefPoint(int refPoint)
Sets the ref point.- Parameters:
refPoint- the refPoint to set
-
getCropLeft
double getCropLeft()
Gets the crop left.- Returns:
- the cropLeft
-
setCropLeft
void setCropLeft(double cropLeft)
Sets the crop left.- Parameters:
cropLeft- the cropLeft to set
-
getCropTop
double getCropTop()
Gets the crop top.- Returns:
- the cropTop
-
setCropTop
void setCropTop(double cropTop)
Sets the crop top.- Parameters:
cropTop- the cropTop to set
-
getCropRight
double getCropRight()
Gets the crop right.- Returns:
- the cropRight
-
setCropRight
void setCropRight(double cropRight)
Sets the crop right.- Parameters:
cropRight- the cropRight to set
-
getCropBottom
double getCropBottom()
Gets the crop bottom.- Returns:
- the cropBottom
-
setCropBottom
void setCropBottom(double cropBottom)
Sets the crop bottom.- Parameters:
cropBottom- the cropBottom to set
-
getFitting
int getFitting()
Gets the fitting.- Returns:
- the fitting
-
setFitting
void setFitting(int fitting)
Sets the fitting.- Parameters:
fitting- the fitting to set
-
-