blob: 5b3980b7974f1b019b277b496a552a419bf79491 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tools.idea.observable.core;
import com.android.tools.idea.observable.AbstractProperty;
import com.android.tools.idea.observable.ObservableValue;
import com.android.tools.idea.observable.expressions.double_.ComparisonExpression;
import org.jetbrains.annotations.NotNull;
/**
* Base class that every double-type property should inherit from, as it provides useful methods
* that enable chaining.
*/
public abstract class DoubleProperty extends AbstractProperty<Double> implements ObservableDouble {
public void increment() {
set(get() + 1.0);
}
@NotNull
@Override
public ObservableBool isEqualTo(@NotNull ObservableValue<Double> value) {
return ComparisonExpression.isEqual(this, value);
}
@NotNull
@Override
public ObservableBool isGreaterThan(@NotNull ObservableValue<Double> value) {
return ComparisonExpression.isGreaterThan(this, value);
}
@NotNull
@Override
public ObservableBool isLessThan(@NotNull ObservableValue<Double> value) {
return ComparisonExpression.isLessThan(this, value);
}
@NotNull
@Override
public ObservableBool isGreaterThanEqualTo(@NotNull ObservableValue<Double> value) {
return ComparisonExpression.isGreaterThanEqual(this, value);
}
@NotNull
@Override
public ObservableBool isLessThanEqualTo(@NotNull ObservableValue<Double> value) {
return ComparisonExpression.isLessThanEqual(this, value);
}
@NotNull
@Override
public ObservableBool isEqualTo(double value) {
return ComparisonExpression.isEqual(this, value);
}
@NotNull
@Override
public ObservableBool isGreaterThan(double value) {
return ComparisonExpression.isGreaterThan(this, value);
}
@NotNull
@Override
public ObservableBool isLessThan(double value) {
return ComparisonExpression.isLessThan(this, value);
}
@NotNull
@Override
public ObservableBool isGreaterThanEqualTo(double value) {
return ComparisonExpression.isGreaterThanEqual(this, value);
}
@NotNull
@Override
public ObservableBool isLessThanEqualTo(double value) {
return ComparisonExpression.isLessThanEqual(this, value);
}
}