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

gate.creole.ontology.HasValueRestriction Maven / Gradle / Ivy

Go to download

GATE - general achitecture for text engineering - is open source software capable of solving almost any text processing problem. This artifact enables you to embed the core GATE Embedded with its essential dependencies. You will able to use the GATE Embedded API and load and store GATE XML documents. This artifact is the perfect dependency for CREOLE plugins or for applications that need to customize the GATE dependencies due to confict with their own dependencies or for lower footprint.

The newest version!
/*
 * HasValueRestriction.java
 *
 * $Id: HasValueRestriction.java 11598 2009-10-13 13:44:17Z johann_p $
 * 
 */
package gate.creole.ontology;

/**
 *  A HasValueRestriction. 
 *
 * @author Niraj Aswani
 *
 */
public interface HasValueRestriction extends Restriction {

  /**
   * Returns the resource which is set as a value  * @return
   */
  public Object getHasValue();

  /**
   * Sets the resource as a restricted value.
   * @param resource
   */
  public void setHasValue(OResource resource);

  /**
   * Sets the literal as a restricted value.
   * @param resource
   */
  public void setHasValue(Literal resource);
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy