org.swrlapi.ui.model.SWRLAPIModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
package org.swrlapi.ui.model;
/**
* Represents a base SWRLAPI model that can be used to construct MVC-based views in an application that uses the
* SWRLAPI.
*
* @see org.swrlapi.ui.view.SWRLAPIView
*/
public interface SWRLAPIModel
{
void updateView();
}