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

org.semanticweb.owlapi.util.AlwaysOutputId Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package org.semanticweb.owlapi.util;

import org.semanticweb.owlapi.model.OWLAnonymousIndividual;

/**
 * Implementation of IndividualAppearance that always returns true - used to
 * force output of ids in all cases.
 */
public class AlwaysOutputId implements IndividualAppearance {

    @Override
    public boolean appearsMultipleTimes(OWLAnonymousIndividual i) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy