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

org.javers.core.metamodel.type.IgnoredType Maven / Gradle / Ivy

There is a newer version: 7.6.2
Show newest version
package org.javers.core.metamodel.type;

import java.lang.reflect.Type;

/**
 * All properties with IgnoredType are ignored by JaVers engine
 *
 * @author bartosz.walacik
 */
public class IgnoredType extends ClassType {

    public IgnoredType(Type baseJavaType) {
        super(baseJavaType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy