Search in sources :

Example 1 with TransparencyChessboardOptions

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());
}
Also used : GridOptions(org.intellij.images.options.GridOptions) ZoomOptions(org.intellij.images.options.ZoomOptions) EditorOptions(org.intellij.images.options.EditorOptions) TransparencyChessboardOptions(org.intellij.images.options.TransparencyChessboardOptions)

Aggregations

EditorOptions (org.intellij.images.options.EditorOptions)1 GridOptions (org.intellij.images.options.GridOptions)1 TransparencyChessboardOptions (org.intellij.images.options.TransparencyChessboardOptions)1 ZoomOptions (org.intellij.images.options.ZoomOptions)1