
de.uni_stuttgart.vis.vowl.owl2vowl.model.SetWithoutNull Maven / Gradle / Ivy
/*
* SetWithoutNull.java
*
*/
package de.uni_stuttgart.vis.vowl.owl2vowl.model;
import java.util.HashSet;
/**
*
*/
public class SetWithoutNull extends HashSet {
@Override
public boolean add(E e) {
return e != null && super.add(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy