use of org.intellij.images.options.TransparencyChessboardOptions in project intellij-community by JetBrains.
the class EditorOptionsImpl method equals.
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof EditorOptions)) {
return false;
}
EditorOptions otherOptions = (EditorOptions) obj;
GridOptions gridOptions = otherOptions.getGridOptions();
TransparencyChessboardOptions chessboardOptions = otherOptions.getTransparencyChessboardOptions();
ZoomOptions zoomOptions = otherOptions.getZoomOptions();
return gridOptions != null && gridOptions.equals(getGridOptions()) && chessboardOptions != null && chessboardOptions.equals(getTransparencyChessboardOptions()) && zoomOptions != null && zoomOptions.equals(getZoomOptions());
}
Aggregations