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

net.java.truevfs.comp.inst.InstrumentingModel Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
/*
 * Copyright (C) 2005-2015 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.truevfs.comp.inst;

import java.util.Objects;
import javax.annotation.concurrent.ThreadSafe;
import net.java.truevfs.kernel.spec.FsDecoratingModel;
import net.java.truevfs.kernel.spec.FsModel;

/**
 * @param   the type of the mediator.
 * @author Christian Schlichtherle
 */
@ThreadSafe
public class InstrumentingModel>
extends FsDecoratingModel {

    protected final M mediator;

    public InstrumentingModel(
            final M mediator,
            final FsModel model) {
        super(model);
        this.mediator = Objects.requireNonNull(mediator);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy