Codota Logo
RunTime.<init>
Code IndexAdd Codota to your IDE (free)

How to use
gate.creole.metadata.RunTime
constructor

Best Java code snippets using gate.creole.metadata.RunTime.<init> (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: uk.ac.gate.plugins/tools

 /**
  * URL of the folder to store output files into
  */
 @RunTime
 @CreoleParameter(suffixes = "html")
 public void setOutputFolderUrl(URL outputFolderUrl) {
  this.outputFolderUrl = outputFolderUrl;
 }
}
origin: uk.ac.gate.plugins/tools

/**
 * Annotation types for which the stats should be calculated
 */
@RunTime
@CreoleParameter
public void setAnnotationTypes(List<String> annotationTypes) {
 this.annotationTypes = annotationTypes;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@CreoleParameter(defaultValue = "false")
public void setEnableDebugging(Boolean enableDebugging) {
 this.enableDebugging = enableDebugging;
}
origin: uk.ac.gate.plugins/annie

/**
 * @param longestMatchOnly the longestMatchOnly to set
 */
@RunTime
@CreoleParameter(comment="Should this gazetteer only match the longest string starting from any offset?", defaultValue="true")
public void setLongestMatchOnly(Boolean longestMatchOnly) {
 this.longestMatchOnly = longestMatchOnly;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@CreoleParameter(defaultValue="Person;Location;Date")
public void setAnnotationTypes(List<String> newTypes) {
 this.annotationTypes = newTypes;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(comment="The annotation sets to keep otherwise delete all", defaultValue="Key")
public void setSetsToKeep(List<String> newSetNames) {
 //we need to modify this list sometimes, so to make sure it's not some
 //unmodifiable version, we'll create our own
 setsToKeep = newSetNames != null ?
     new ArrayList<String>(newSetNames):
     new ArrayList<String>();
}
origin: uk.ac.gate.plugins/tools

@RunTime
@Optional
@CreoleParameter(comment="The name of the annotation set that contains textTagName")
public void setTagASName(String newTagASName) {
 // if given an empty string, set to the default set
 if("".equals(newTagASName))
  tagASName = null;
 else tagASName = newTagASName;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(comment="The annotation set to be used as input that must contain 'Token' annotations")
public void setInputASName(String newInputASName) {
 inputASName = newInputASName;
}
origin: uk.ac.gate.plugins/annie

/** set the annotation set name*/
@RunTime
@Optional
@CreoleParameter(comment="Annotation set name where are the annotation types (annotationTypes)")
public void setAnnotationSetName(String newAnnotationSetName) {
 annotationSetName = newAnnotationSetName;
}//setAnnotationSetName
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(comment="The annotation set to be used as output for 'Sentence' and 'Split' annotations")
public void setOutputASName(String newOutputASName) {
 outputASName = newOutputASName;
}
public String getOutputASName() {
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(
 comment = "Should all Tokens be POS tagged or just those within baseSentenceAnnotationType?",
 defaultValue = "true")  
public void setPosTagAllTokens(Boolean allTokens) {
 posTagAllTokens = allTokens;
}
public Boolean getPosTagAllTokens() {
origin: uk.ac.gate.plugins/tools

/**
 * Sets the name of annotation set that should be used for storing new
 * annotations
 * 
 * @param outputASName
 */
@RunTime
@Optional
@CreoleParameter(comment="The annotation set to be used for the generated annotations")
public void setOutputASName(String outputASName) {
 this.outputASName = outputASName;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@Optional
@CreoleParameter(comment="The name of the annotation set used for output")
public void setOutputASName(String newOutputASName) {
 outputASName = newOutputASName;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@Optional
@CreoleParameter(defaultValue="Person;Location;Date", comment="A list of the new names to be used instead of the ANNIE types given for dumping")
public void setDumpTypes(List<String> newTypes) {
 dumpTypes = newTypes;
}
origin: uk.ac.gate.plugins/tagger-measurements

@RunTime
@Optional
@CreoleParameter(comment = "Throw an exception when there are none of the required input annotations (Token) are present in the input set", defaultValue = "true")
public void setFailOnMissingInputAnnotations(Boolean fail) {
 failOnMissingInputAnnotations = fail;
}
origin: uk.ac.gate.plugins/annie

/**
 * @param outputASName the outputASName to set
 */
@RunTime
@Optional
@CreoleParameter(comment="The annotation set to be used as output for 'Sentence' and 'Split' annotations")
public void setOutputASName(String outputASName) {
 this.outputASName = outputASName;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(comment="The annotation types to delete otherwise delete all")
public void setAnnotationTypes(List<String> newTypes) {
 annotationTypes = newTypes;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@Optional
@CreoleParameter(comment="The annotation set to be used for the generated annotations")
public void setAnnotationSetName(String annotationSetName) {
 this.annotationSetName = annotationSetName;
}
public String getAnnotationSetName() {
origin: uk.ac.gate.plugins/tools

@RunTime
@Optional
@CreoleParameter(comment = "The name for annotation set used as input to " +
    "the exporter.")
public void setInputASName(String iasn) {
 this.inputASName = iasn;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@Optional
@CreoleParameter(comment = "The annotation type to be treated as instance. " +
    "Leave blank to use document as instance.")
public void setInstanceName(String inst) {
 this.instanceName = inst;
}
gate.creole.metadataRunTime<init>

Popular methods of RunTime

    Popular in Java

    • Creating JSON documents from java classes using gson
    • getContentResolver (Context)
    • compareTo (BigDecimal)
      Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
    • getApplicationContext (Context)
    • Font (java.awt)
      The Font class represents fonts, which are used to render text in a visible way. A font provides the
    • FileWriter (java.io)
      Convenience class for writing character files. The constructors of this class assume that the defaul
    • SQLException (java.sql)
      An exception that indicates a failed JDBC operation. It provides the following information about pro
    • ArrayList (java.util)
      Resizable-array implementation of the List interface. Implements all optional list operations, and p
    • ImageIO (javax.imageio)
    • XPath (javax.xml.xpath)
      XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
    Codota Logo
    • Products

      Search for Java codeSearch for JavaScript codeEnterprise
    • IDE Plugins

      IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Codota for your IDE now