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

gate.creole.PackagedController 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!
package gate.creole;

import java.util.List;

import gate.creole.metadata.CreoleParameter;
import gate.creole.metadata.Optional;

public abstract class PackagedController extends AbstractResource {
  
  private static final long serialVersionUID = -7281132236231594274L;
  
  protected ResourceReference url;

  @CreoleParameter
  public void setPipelineURL(ResourceReference url) {
    this.url = url;
  }

  public ResourceReference getPipelineURL() {
    return url;
  }
  
  private List menu = null;
  
  @CreoleParameter
  @Optional
  public void setMenu(List menu) {
    this.menu = menu;
  }
  
  public List getMenu() {
    return menu;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy