com.clarkparsia.pellint.model.LintFactory Maven / Gradle / Ivy
The newest version!
// Copyright (c) 2006 - 2008, Clark & Parsia, LLC.
// This source code is available under the terms of the Affero General Public License v3.
//
// Please see LICENSE.txt for full license terms, including the availability of proprietary exceptions.
// Questions, comments, or requests for clarification: [email protected]
package com.clarkparsia.pellint.model;
import org.semanticweb.owlapi.model.OWLOntology;
import com.clarkparsia.pellint.lintpattern.LintPattern;
/**
*
* Title:
*
*
* Description:
*
*
* Copyright: Copyright (c) 2008
*
*
* Company: Clark & Parsia, LLC.
*
*
* @author Harris Lin
*/
public class LintFactory {
private LintPattern m_LintPattern;
private OWLOntology m_ParticipatingOntology;
public LintFactory(LintPattern lintPattern, OWLOntology participatingOntology) {
m_LintPattern = lintPattern;
m_ParticipatingOntology = participatingOntology;
}
public Lint make() {
return new Lint(m_LintPattern, m_ParticipatingOntology);
}
}