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

org.picocontainer.script.testmodel.B Maven / Gradle / Ivy

The newest version!
package org.picocontainer.script.testmodel;

import junit.framework.Assert;


/**
 * @author Mauro Talevi
 */
public final class B extends X {
    public final A a;

    public B(A a) {
        Assert.assertNotNull(a);
        this.a = a;
    }

    public A getA() {
        return a;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy