All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.checkerframework.common.accumulation.AccumulationStore Maven / Gradle / Ivy

Go to download

The Checker Framework enhances Java's type system to make it more powerful and useful. This lets software developers detect and prevent errors in their Java programs. The Checker Framework includes compiler plug-ins ("checkers") that find bugs or verify their absence. It also permits you to write your own compiler plug-ins.

The newest version!
package org.checkerframework.common.accumulation;

import org.checkerframework.framework.flow.CFAbstractAnalysis;
import org.checkerframework.framework.flow.CFAbstractStore;

/** This class is boilerplate, to enable the logic in AccumulationValue. */
public class AccumulationStore extends CFAbstractStore {

    /**
     * Constructor matching super.
     *
     * @param analysis the analysis
     * @param sequentialSemantics whether to use sequential semantics (true) or concurrent semantics
     *     (false)
     */
    protected AccumulationStore(
            CFAbstractAnalysis analysis,
            boolean sequentialSemantics) {
        super(analysis, sequentialSemantics);
    }

    /**
     * Constructor matching super's copy constructor.
     *
     * @param other another store
     */
    protected AccumulationStore(CFAbstractStore other) {
        super(other);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy