Codota Logo
RunTime
Code IndexAdd Codota to your IDE (free)

How to use
RunTime
in
gate.creole.metadata

Best Java code snippets using gate.creole.metadata.RunTime (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

/**
 * 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/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/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

/**
 * Sets the value for the {@link #wholeWordsOnly} parameter.
 * @param wholeWordsOnly a Boolean value.
 */
@RunTime
@CreoleParameter(comment="Should this gazetteer only match whole words?", defaultValue="true")
public void setWholeWordsOnly(Boolean wholeWordsOnly) {
 this.wholeWordsOnly = wholeWordsOnly;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@CreoleParameter(comment="The name of the base 'Token' annotation type", defaultValue="Token")
public void setBaseTokenAnnotationType(String baseTokenAnnotationType) {
  this.baseTokenAnnotationType = baseTokenAnnotationType;
}

origin: uk.ac.gate.plugins/tools

@RunTime
@CreoleParameter(comment = "If true (default), all annotations are copied/moved if no annotation of the type specified for textTagName is found", defaultValue = "true")
public void setTransferAllUnlessFound(Boolean value) {
 this.transferAllUnlessFound = value;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@CreoleParameter(comment="Gazetteer Instance to be used")
public void setGazetteerInst(gate.creole.gazetteer.Gazetteer gazetteerInst) {
 this.gazetteerInst = gazetteerInst;
}
origin: uk.ac.gate.plugins/tools

@RunTime
@CreoleParameter(comment = "If true, the annotations will remain in the inputAS, otherwise they will be removed", defaultValue = "false")
public void setCopyAnnotations(Boolean copyAnnotations) {
 this.copyAnnotations = copyAnnotations;
}
origin: uk.ac.gate.plugins/annie

@RunTime
@CreoleParameter(comment="The name of the base 'Sentence' annotation type", defaultValue="Sentence")
public void setBaseSentenceAnnotationType(String baseSentenceAnnotationtype) {
  this.baseSentenceAnnotationType = baseSentenceAnnotationtype;
}

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 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/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 input that must contain 'Token' annotations")
public void setInputASName(String newInputASName) {
 inputASName = newInputASName;
}
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/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;
}
gate.creole.metadataRunTime

Most used methods

  • <init>

Popular in Java

  • Reading from database using SQL prepared statement
  • setScale (BigDecimal)
  • getApplicationContext (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
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