org.gradle.api.internal.MutationGuard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 the original author or authors.
*
* 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 org.gradle.api.internal;
import org.gradle.api.Action;
/**
* A guard object for the mutability of an object. All mutable method of the object needs to be guarded by calling {@code #assertMutationAllowed(String)}. If you want to allow ad-hoc code to pass over the mutation guard of the object, the object will need to implement {@code WithMutationGuard}. You can then use {@code MutationGuards#of(Object)} to acquire the guard and enable/disable the mutation as you see fit.
*/
public interface MutationGuard {
/**
* Wraps the specified action with mutation disabling code.
*
* @param action the action to disable mutation during execution.
* @param the action parameter type
* @return an action
*/
Action super T> withMutationDisabled(Action super T> action);
/**
* Wraps the specified action with mutation enabling code.
*
* @param action the action to enable mutation during execution.
* @param the action parameter type
* @return an action
*/
Action super T> withMutationEnabled(Action super T> action);
/**
* Returns {@code true} if the mutation is enabled, and {@code false} otherwise.
*/
boolean isMutationAllowed();
/**
* Throws exception when mutation is not allowed.
*
* @param methodName the method name the assertion is testing
* @param target the target object been asserted on
*/
void assertMutationAllowed(String methodName, Object target);
void assertMutationAllowed(String methodName, T target, Class targetType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy