repo stringlengths 7 58 | path stringlengths 12 218 | func_name stringlengths 3 140 | original_string stringlengths 73 34.1k | language stringclasses 1
value | code stringlengths 73 34.1k | code_tokens list | docstring stringlengths 3 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 105 339 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
BlueBrain/bluima | modules/bluima_corpora/src/main/java/ch/epfl/bbp/uima/cr/GeniaCorpusCollectionReader.java | GeniaCorpusCollectionReader.getProteins | public static Collection<BioEntityMention> getProteins(
Collection<BioEntityMention> mentions) {
ArrayList<BioEntityMention> ret = new ArrayList<BioEntityMention>();
for (BioEntityMention mention : mentions) {
if (mention.getSpecificType() != null
&& mention.g... | java | public static Collection<BioEntityMention> getProteins(
Collection<BioEntityMention> mentions) {
ArrayList<BioEntityMention> ret = new ArrayList<BioEntityMention>();
for (BioEntityMention mention : mentions) {
if (mention.getSpecificType() != null
&& mention.g... | [
"public",
"static",
"Collection",
"<",
"BioEntityMention",
">",
"getProteins",
"(",
"Collection",
"<",
"BioEntityMention",
">",
"mentions",
")",
"{",
"ArrayList",
"<",
"BioEntityMention",
">",
"ret",
"=",
"new",
"ArrayList",
"<",
"BioEntityMention",
">",
"(",
")... | Filters mentions that are proteins | [
"Filters",
"mentions",
"that",
"are",
"proteins"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_corpora/src/main/java/ch/epfl/bbp/uima/cr/GeniaCorpusCollectionReader.java#L147-L156 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getNormalizedValue | public float getNormalizedValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedValue == null)
jcasType.jcas.throwFeatMissing("normalizedValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedValu... | java | public float getNormalizedValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedValue == null)
jcasType.jcas.throwFeatMissing("normalizedValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedValu... | [
"public",
"float",
"getNormalizedValue",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_normalizedValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",... | getter for normalizedValue - gets
@generated
@return value of the feature | [
"getter",
"for",
"normalizedValue",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L130-L133 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setNormalizedValue | public void setNormalizedValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedValue == null)
jcasType.jcas.throwFeatMissing("normalizedValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedValue... | java | public void setNormalizedValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedValue == null)
jcasType.jcas.throwFeatMissing("normalizedValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedValue... | [
"public",
"void",
"setNormalizedValue",
"(",
"float",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_normalizedValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFea... | setter for normalizedValue - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"normalizedValue",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L139-L142 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getRangeStartValue | public float getRangeStartValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeStartValue == null)
jcasType.jcas.throwFeatMissing("rangeStartValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeStartValu... | java | public float getRangeStartValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeStartValue == null)
jcasType.jcas.throwFeatMissing("rangeStartValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeStartValu... | [
"public",
"float",
"getRangeStartValue",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeStartValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",... | getter for rangeStartValue - gets
@generated
@return value of the feature | [
"getter",
"for",
"rangeStartValue",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L152-L155 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setRangeStartValue | public void setRangeStartValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeStartValue == null)
jcasType.jcas.throwFeatMissing("rangeStartValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeStartValue... | java | public void setRangeStartValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeStartValue == null)
jcasType.jcas.throwFeatMissing("rangeStartValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeStartValue... | [
"public",
"void",
"setRangeStartValue",
"(",
"float",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeStartValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFea... | setter for rangeStartValue - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"rangeStartValue",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L161-L164 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getRangeEndValue | public float getRangeEndValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeEndValue == null)
jcasType.jcas.throwFeatMissing("rangeEndValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeEndValue);} | java | public float getRangeEndValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeEndValue == null)
jcasType.jcas.throwFeatMissing("rangeEndValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeEndValue);} | [
"public",
"float",
"getRangeEndValue",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeEndValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"... | getter for rangeEndValue - gets
@generated
@return value of the feature | [
"getter",
"for",
"rangeEndValue",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L174-L177 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setRangeEndValue | public void setRangeEndValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeEndValue == null)
jcasType.jcas.throwFeatMissing("rangeEndValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeEndValue, v);} | java | public void setRangeEndValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_rangeEndValue == null)
jcasType.jcas.throwFeatMissing("rangeEndValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_rangeEndValue, v);} | [
"public",
"void",
"setRangeEndValue",
"(",
"float",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeEndValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMis... | setter for rangeEndValue - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"rangeEndValue",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L183-L186 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getMeanValue | public float getMeanValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_meanValue == null)
jcasType.jcas.throwFeatMissing("meanValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_meanValue);} | java | public float getMeanValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_meanValue == null)
jcasType.jcas.throwFeatMissing("meanValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_meanValue);} | [
"public",
"float",
"getMeanValue",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_meanValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"meanVa... | getter for meanValue - gets
@generated
@return value of the feature | [
"getter",
"for",
"meanValue",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L196-L199 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setMeanValue | public void setMeanValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_meanValue == null)
jcasType.jcas.throwFeatMissing("meanValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_meanValue, v);} | java | public void setMeanValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_meanValue == null)
jcasType.jcas.throwFeatMissing("meanValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_meanValue, v);} | [
"public",
"void",
"setMeanValue",
"(",
"float",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_meanValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | setter for meanValue - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"meanValue",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L205-L208 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getStandardErrorValue | public float getStandardErrorValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_standardErrorValue == null)
jcasType.jcas.throwFeatMissing("standardErrorValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_stand... | java | public float getStandardErrorValue() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_standardErrorValue == null)
jcasType.jcas.throwFeatMissing("standardErrorValue", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_stand... | [
"public",
"float",
"getStandardErrorValue",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_standardErrorValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | getter for standardErrorValue - gets
@generated
@return value of the feature | [
"getter",
"for",
"standardErrorValue",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L218-L221 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setStandardErrorValue | public void setStandardErrorValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_standardErrorValue == null)
jcasType.jcas.throwFeatMissing("standardErrorValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_standa... | java | public void setStandardErrorValue(float v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_standardErrorValue == null)
jcasType.jcas.throwFeatMissing("standardErrorValue", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setFloatValue(addr, ((Measure_Type)jcasType).casFeatCode_standa... | [
"public",
"void",
"setStandardErrorValue",
"(",
"float",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_standardErrorValue",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"th... | setter for standardErrorValue - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"standardErrorValue",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L227-L230 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getUnit | public String getUnit() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_unit == null)
jcasType.jcas.throwFeatMissing("unit", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getStringValue(addr, ((Measure_Type)jcasType).casFeatCode_unit);} | java | public String getUnit() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_unit == null)
jcasType.jcas.throwFeatMissing("unit", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getStringValue(addr, ((Measure_Type)jcasType).casFeatCode_unit);} | [
"public",
"String",
"getUnit",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_unit",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"unit\"",
",",... | getter for unit - gets iso
@generated
@return value of the feature | [
"getter",
"for",
"unit",
"-",
"gets",
"iso"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L264-L267 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setUnit | public void setUnit(String v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_unit == null)
jcasType.jcas.throwFeatMissing("unit", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setStringValue(addr, ((Measure_Type)jcasType).casFeatCode_unit, v);} | java | public void setUnit(String v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_unit == null)
jcasType.jcas.throwFeatMissing("unit", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setStringValue(addr, ((Measure_Type)jcasType).casFeatCode_unit, v);} | [
"public",
"void",
"setUnit",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_unit",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"... | setter for unit - sets iso
@generated
@param v value to set into the feature | [
"setter",
"for",
"unit",
"-",
"sets",
"iso"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L273-L276 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.getNormalizedUnit | public String getNormalizedUnit() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedUnit == null)
jcasType.jcas.throwFeatMissing("normalizedUnit", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getStringValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedUnit)... | java | public String getNormalizedUnit() {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedUnit == null)
jcasType.jcas.throwFeatMissing("normalizedUnit", "ch.epfl.bbp.uima.types.Measure");
return jcasType.ll_cas.ll_getStringValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedUnit)... | [
"public",
"String",
"getNormalizedUnit",
"(",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_normalizedUnit",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
... | getter for normalizedUnit - gets iso
@generated
@return value of the feature | [
"getter",
"for",
"normalizedUnit",
"-",
"gets",
"iso"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L286-L289 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java | Measure.setNormalizedUnit | public void setNormalizedUnit(String v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedUnit == null)
jcasType.jcas.throwFeatMissing("normalizedUnit", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setStringValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedUnit, ... | java | public void setNormalizedUnit(String v) {
if (Measure_Type.featOkTst && ((Measure_Type)jcasType).casFeat_normalizedUnit == null)
jcasType.jcas.throwFeatMissing("normalizedUnit", "ch.epfl.bbp.uima.types.Measure");
jcasType.ll_cas.ll_setStringValue(addr, ((Measure_Type)jcasType).casFeatCode_normalizedUnit, ... | [
"public",
"void",
"setNormalizedUnit",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"Measure_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Measure_Type",
")",
"jcasType",
")",
".",
"casFeat_normalizedUnit",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeat... | setter for normalizedUnit - sets iso
@generated
@param v value to set into the feature | [
"setter",
"for",
"normalizedUnit",
"-",
"sets",
"iso"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/Measure.java#L295-L298 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/TopicDistribution.java | TopicDistribution.getProbability | public double getProbability(int i) {
if (TopicDistribution_Type.featOkTst && ((TopicDistribution_Type)jcasType).casFeat_probability == null)
jcasType.jcas.throwFeatMissing("probability", "ch.epfl.bbp.uima.types.TopicDistribution");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((Top... | java | public double getProbability(int i) {
if (TopicDistribution_Type.featOkTst && ((TopicDistribution_Type)jcasType).casFeat_probability == null)
jcasType.jcas.throwFeatMissing("probability", "ch.epfl.bbp.uima.types.TopicDistribution");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((Top... | [
"public",
"double",
"getProbability",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"TopicDistribution_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TopicDistribution_Type",
")",
"jcasType",
")",
".",
"casFeat_probability",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",... | indexed getter for probability - gets an indexed value -
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"probability",
"-",
"gets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/TopicDistribution.java#L106-L110 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/TopicDistribution.java | TopicDistribution.setProbability | public void setProbability(int i, double v) {
if (TopicDistribution_Type.featOkTst && ((TopicDistribution_Type)jcasType).casFeat_probability == null)
jcasType.jcas.throwFeatMissing("probability", "ch.epfl.bbp.uima.types.TopicDistribution");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(ad... | java | public void setProbability(int i, double v) {
if (TopicDistribution_Type.featOkTst && ((TopicDistribution_Type)jcasType).casFeat_probability == null)
jcasType.jcas.throwFeatMissing("probability", "ch.epfl.bbp.uima.types.TopicDistribution");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(ad... | [
"public",
"void",
"setProbability",
"(",
"int",
"i",
",",
"double",
"v",
")",
"{",
"if",
"(",
"TopicDistribution_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TopicDistribution_Type",
")",
"jcasType",
")",
".",
"casFeat_probability",
"==",
"null",
")",
"jcasType",... | indexed setter for probability - sets an indexed value -
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"probability",
"-",
"sets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/TopicDistribution.java#L117-L121 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.load | public void load(File file,boolean ids) throws IOException,FileNotFoundException
{
LineNumberReader in = new LineNumberReader(new FileReader(file));
String line;
while ((line = in.readLine())!=null) {
if (ids) put(Integer.toString(in.getLineNumber()), line, line);
else put(line,line);
}
in.close();
... | java | public void load(File file,boolean ids) throws IOException,FileNotFoundException
{
LineNumberReader in = new LineNumberReader(new FileReader(file));
String line;
while ((line = in.readLine())!=null) {
if (ids) put(Integer.toString(in.getLineNumber()), line, line);
else put(line,line);
}
in.close();
... | [
"public",
"void",
"load",
"(",
"File",
"file",
",",
"boolean",
"ids",
")",
"throws",
"IOException",
",",
"FileNotFoundException",
"{",
"LineNumberReader",
"in",
"=",
"new",
"LineNumberReader",
"(",
"new",
"FileReader",
"(",
"file",
")",
")",
";",
"String",
"... | Insert all lines in a file as items mapping to themselves. If
'ids' is true, then make the line number of an item its id.
<p>This is mostly for testing the id feature. | [
"Insert",
"all",
"lines",
"in",
"a",
"file",
"as",
"items",
"mapping",
"to",
"themselves",
".",
"If",
"ids",
"is",
"true",
"then",
"make",
"the",
"line",
"number",
"of",
"an",
"item",
"its",
"id",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L108-L117 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.loadAliases | public void loadAliases(File file) throws IOException,FileNotFoundException
{
LineNumberReader in = new LineNumberReader(new FileReader(file));
String line;
while ((line = in.readLine())!=null) {
String[] parts = line.split("\\t");
for (int j=1; j<parts.length; j++) {
put( parts[j], parts[j], parts[0... | java | public void loadAliases(File file) throws IOException,FileNotFoundException
{
LineNumberReader in = new LineNumberReader(new FileReader(file));
String line;
while ((line = in.readLine())!=null) {
String[] parts = line.split("\\t");
for (int j=1; j<parts.length; j++) {
put( parts[j], parts[j], parts[0... | [
"public",
"void",
"loadAliases",
"(",
"File",
"file",
")",
"throws",
"IOException",
",",
"FileNotFoundException",
"{",
"LineNumberReader",
"in",
"=",
"new",
"LineNumberReader",
"(",
"new",
"FileReader",
"(",
"file",
")",
")",
";",
"String",
"line",
";",
"while... | Load a file of identifiers, each of which has multiple
aliases. Each line is a list of tab-separated strings, the
first of which is the identifier, the remainder of which
are aliases. | [
"Load",
"a",
"file",
"of",
"identifiers",
"each",
"of",
"which",
"has",
"multiple",
"aliases",
".",
"Each",
"line",
"is",
"a",
"list",
"of",
"tab",
"-",
"separated",
"strings",
"the",
"first",
"of",
"which",
"is",
"the",
"identifier",
"the",
"remainder",
... | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L124-L135 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.put | public void put(String id, StringWrapper toInsert,Object value)
{
MyWrapper wrapper = asMyWrapper(toInsert);
Token[] tokens = wrapper.getTokens();
for (int i=0; i<tokens.length; i++) {
ArrayList stringsWithToken = (ArrayList) index.get(tokens[i]);
if (stringsWithToken==null) index.put( tokens[i], (stri... | java | public void put(String id, StringWrapper toInsert,Object value)
{
MyWrapper wrapper = asMyWrapper(toInsert);
Token[] tokens = wrapper.getTokens();
for (int i=0; i<tokens.length; i++) {
ArrayList stringsWithToken = (ArrayList) index.get(tokens[i]);
if (stringsWithToken==null) index.put( tokens[i], (stri... | [
"public",
"void",
"put",
"(",
"String",
"id",
",",
"StringWrapper",
"toInsert",
",",
"Object",
"value",
")",
"{",
"MyWrapper",
"wrapper",
"=",
"asMyWrapper",
"(",
"toInsert",
")",
";",
"Token",
"[",
"]",
"tokens",
"=",
"wrapper",
".",
"getTokens",
"(",
"... | Insert a prepared string into the dictionary.
<p>Id is a special tag used to handle 'leave one out'
lookups. If you do a lookup on a string with a non-null
id, you get the closest matches that do not have the same
id. | [
"Insert",
"a",
"prepared",
"string",
"into",
"the",
"dictionary",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L164-L177 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.doLookup | private void doLookup(String id,StringWrapper toFind)
{
// retrain if necessary
if (distance==null) {
distance = new MyTeacher().train( distanceLearner );
}
// used cached values if it's ok
if (lastLookup==toFind) return;
closeMatches = new HashSet();
closestMatch = null;
distanceToClosestMatch = -Dou... | java | private void doLookup(String id,StringWrapper toFind)
{
// retrain if necessary
if (distance==null) {
distance = new MyTeacher().train( distanceLearner );
}
// used cached values if it's ok
if (lastLookup==toFind) return;
closeMatches = new HashSet();
closestMatch = null;
distanceToClosestMatch = -Dou... | [
"private",
"void",
"doLookup",
"(",
"String",
"id",
",",
"StringWrapper",
"toFind",
")",
"{",
"// retrain if necessary",
"if",
"(",
"distance",
"==",
"null",
")",
"{",
"distance",
"=",
"new",
"MyTeacher",
"(",
")",
".",
"train",
"(",
"distanceLearner",
")",
... | Lookup a string in the dictionary, cache result in closeMatches.
<p>If id==null, consider any match. If id is non-null, consider
only matches to strings that don't have the same id, or that have
a null id. | [
"Lookup",
"a",
"string",
"in",
"the",
"dictionary",
"cache",
"result",
"in",
"closeMatches",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L192-L230 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.lookup | public Object lookup(String id,String toFind)
{
return lookup(id,new MyWrapper(toFind));
} | java | public Object lookup(String id,String toFind)
{
return lookup(id,new MyWrapper(toFind));
} | [
"public",
"Object",
"lookup",
"(",
"String",
"id",
",",
"String",
"toFind",
")",
"{",
"return",
"lookup",
"(",
"id",
",",
"new",
"MyWrapper",
"(",
"toFind",
")",
")",
";",
"}"
] | Lookup a string in the dictionary.
<p>If id is non-null, then consider only strings with different ids (or null ids). | [
"Lookup",
"a",
"string",
"in",
"the",
"dictionary",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L236-L239 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.lookup | public Object lookup(String id,StringWrapper toFind)
{
doLookup(id,toFind);
return closestMatch;
} | java | public Object lookup(String id,StringWrapper toFind)
{
doLookup(id,toFind);
return closestMatch;
} | [
"public",
"Object",
"lookup",
"(",
"String",
"id",
",",
"StringWrapper",
"toFind",
")",
"{",
"doLookup",
"(",
"id",
",",
"toFind",
")",
";",
"return",
"closestMatch",
";",
"}"
] | Lookup a prepared string in the dictionary.
<p>If id is non-null, then consider only strings with different ids (or null ids). | [
"Lookup",
"a",
"prepared",
"string",
"in",
"the",
"dictionary",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L245-L249 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.asMyWrapper | private MyWrapper asMyWrapper(StringWrapper w)
{
if (w instanceof MyWrapper) return (MyWrapper)w;
else return new MyWrapper(w.unwrap());
} | java | private MyWrapper asMyWrapper(StringWrapper w)
{
if (w instanceof MyWrapper) return (MyWrapper)w;
else return new MyWrapper(w.unwrap());
} | [
"private",
"MyWrapper",
"asMyWrapper",
"(",
"StringWrapper",
"w",
")",
"{",
"if",
"(",
"w",
"instanceof",
"MyWrapper",
")",
"return",
"(",
"MyWrapper",
")",
"w",
";",
"else",
"return",
"new",
"MyWrapper",
"(",
"w",
".",
"unwrap",
"(",
")",
")",
";",
"}... | lazily convert to a MyWrapper | [
"lazily",
"convert",
"to",
"a",
"MyWrapper"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L338-L342 | train |
BlueBrain/bluima | modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java | SoftDictionary.main | static public void main(String[] argv) throws IOException,FileNotFoundException
{
SoftDictionary m = new SoftDictionary();
System.out.println("loading...");
m.loadAliases(new File(argv[0]));
System.out.println("loaded...");
for (int i=1; i<argv.length; i++) {
System.out.println("lookup: "+argv[i]);
S... | java | static public void main(String[] argv) throws IOException,FileNotFoundException
{
SoftDictionary m = new SoftDictionary();
System.out.println("loading...");
m.loadAliases(new File(argv[0]));
System.out.println("loaded...");
for (int i=1; i<argv.length; i++) {
System.out.println("lookup: "+argv[i]);
S... | [
"static",
"public",
"void",
"main",
"(",
"String",
"[",
"]",
"argv",
")",
"throws",
"IOException",
",",
"FileNotFoundException",
"{",
"SoftDictionary",
"m",
"=",
"new",
"SoftDictionary",
"(",
")",
";",
"System",
".",
"out",
".",
"println",
"(",
"\"loading...... | Simple main for testing. | [
"Simple",
"main",
"for",
"testing",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/lookup/SoftDictionary.java#L365-L380 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.getId | public int getId() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_id == null)
jcasType.jcas.throwFeatMissing("id", "de.julielab.jules.types.muc7.Coref");
return jcasType.ll_cas.ll_getIntValue(addr, ((Coref_Type)jcasType).casFeatCode_id);} | java | public int getId() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_id == null)
jcasType.jcas.throwFeatMissing("id", "de.julielab.jules.types.muc7.Coref");
return jcasType.ll_cas.ll_getIntValue(addr, ((Coref_Type)jcasType).casFeatCode_id);} | [
"public",
"int",
"getId",
"(",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_id",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"id\"",
",",
"\"de.juli... | getter for id - gets
@generated
@return value of the feature | [
"getter",
"for",
"id",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L86-L89 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.setId | public void setId(int v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_id == null)
jcasType.jcas.throwFeatMissing("id", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setIntValue(addr, ((Coref_Type)jcasType).casFeatCode_id, v);} | java | public void setId(int v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_id == null)
jcasType.jcas.throwFeatMissing("id", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setIntValue(addr, ((Coref_Type)jcasType).casFeatCode_id, v);} | [
"public",
"void",
"setId",
"(",
"int",
"v",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_id",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"id\"",
... | setter for id - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"id",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L95-L98 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.getCorefType | public String getCorefType() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_corefType == null)
jcasType.jcas.throwFeatMissing("corefType", "de.julielab.jules.types.muc7.Coref");
return jcasType.ll_cas.ll_getStringValue(addr, ((Coref_Type)jcasType).casFeatCode_corefType);} | java | public String getCorefType() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_corefType == null)
jcasType.jcas.throwFeatMissing("corefType", "de.julielab.jules.types.muc7.Coref");
return jcasType.ll_cas.ll_getStringValue(addr, ((Coref_Type)jcasType).casFeatCode_corefType);} | [
"public",
"String",
"getCorefType",
"(",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_corefType",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"corefType... | getter for corefType - gets
@generated
@return value of the feature | [
"getter",
"for",
"corefType",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L108-L111 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.setCorefType | public void setCorefType(String v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_corefType == null)
jcasType.jcas.throwFeatMissing("corefType", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setStringValue(addr, ((Coref_Type)jcasType).casFeatCode_corefType, v);} | java | public void setCorefType(String v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_corefType == null)
jcasType.jcas.throwFeatMissing("corefType", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setStringValue(addr, ((Coref_Type)jcasType).casFeatCode_corefType, v);} | [
"public",
"void",
"setCorefType",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_corefType",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(... | setter for corefType - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"corefType",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L117-L120 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.getRef | public Coref getRef() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.muc7.Coref");
return (Coref)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Coref_Type)jcasType).casFeatCode_ref)));} | java | public Coref getRef() {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.muc7.Coref");
return (Coref)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Coref_Type)jcasType).casFeatCode_ref)));} | [
"public",
"Coref",
"getRef",
"(",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_ref",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"ref\"",
",",
"\"de... | getter for ref - gets
@generated
@return value of the feature | [
"getter",
"for",
"ref",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L130-L133 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java | Coref.setRef | public void setRef(Coref v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setRefValue(addr, ((Coref_Type)jcasType).casFeatCode_ref, jcasType.ll_cas.ll_getFSRef(v));} | java | public void setRef(Coref v) {
if (Coref_Type.featOkTst && ((Coref_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.muc7.Coref");
jcasType.ll_cas.ll_setRefValue(addr, ((Coref_Type)jcasType).casFeatCode_ref, jcasType.ll_cas.ll_getFSRef(v));} | [
"public",
"void",
"setRef",
"(",
"Coref",
"v",
")",
"{",
"if",
"(",
"Coref_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Coref_Type",
")",
"jcasType",
")",
".",
"casFeat_ref",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"ref\"... | setter for ref - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"ref",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/muc7/Coref.java#L139-L142 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java | ArgumentMention.getRef | public Annotation getRef() {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.ArgumentMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((ArgumentMenti... | java | public Annotation getRef() {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.ArgumentMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((ArgumentMenti... | [
"public",
"Annotation",
"getRef",
"(",
")",
"{",
"if",
"(",
"ArgumentMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"ArgumentMention_Type",
")",
"jcasType",
")",
".",
"casFeat_ref",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
... | getter for ref - gets Reference to the Annotation Object that acts as a argument here
@generated
@return value of the feature | [
"getter",
"for",
"ref",
"-",
"gets",
"Reference",
"to",
"the",
"Annotation",
"Object",
"that",
"acts",
"as",
"a",
"argument",
"here"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java#L85-L88 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java | ArgumentMention.setRef | public void setRef(Annotation v) {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.ArgumentMention");
jcasType.ll_cas.ll_setRefValue(addr, ((ArgumentMention_Type)jcasType).casFeatCode_ref, jcasType.l... | java | public void setRef(Annotation v) {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_ref == null)
jcasType.jcas.throwFeatMissing("ref", "de.julielab.jules.types.ArgumentMention");
jcasType.ll_cas.ll_setRefValue(addr, ((ArgumentMention_Type)jcasType).casFeatCode_ref, jcasType.l... | [
"public",
"void",
"setRef",
"(",
"Annotation",
"v",
")",
"{",
"if",
"(",
"ArgumentMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"ArgumentMention_Type",
")",
"jcasType",
")",
".",
"casFeat_ref",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMi... | setter for ref - sets Reference to the Annotation Object that acts as a argument here
@generated
@param v value to set into the feature | [
"setter",
"for",
"ref",
"-",
"sets",
"Reference",
"to",
"the",
"Annotation",
"Object",
"that",
"acts",
"as",
"a",
"argument",
"here"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java#L94-L97 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java | ArgumentMention.setRole | public void setRole(String v) {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_role == null)
jcasType.jcas.throwFeatMissing("role", "de.julielab.jules.types.ArgumentMention");
jcasType.ll_cas.ll_setStringValue(addr, ((ArgumentMention_Type)jcasType).casFeatCode_role, v);} | java | public void setRole(String v) {
if (ArgumentMention_Type.featOkTst && ((ArgumentMention_Type)jcasType).casFeat_role == null)
jcasType.jcas.throwFeatMissing("role", "de.julielab.jules.types.ArgumentMention");
jcasType.ll_cas.ll_setStringValue(addr, ((ArgumentMention_Type)jcasType).casFeatCode_role, v);} | [
"public",
"void",
"setRole",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"ArgumentMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"ArgumentMention_Type",
")",
"jcasType",
")",
".",
"casFeat_role",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMiss... | setter for role - sets the role of the argument
@generated
@param v value to set into the feature | [
"setter",
"for",
"role",
"-",
"sets",
"the",
"role",
"of",
"the",
"argument"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ArgumentMention.java#L116-L119 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/postag/POSDictionary.java | POSDictionary.getTags | public String[] getTags(String word) {
if (caseSensitive) {
return (String[]) dictionary.get(word);
}
else {
//System.err.println(java.util.Arrays.asList((String[]) dictionary.get(word.toLowerCase())));
return (String[]) dictionary.get(word.toLowerCase());
}
} | java | public String[] getTags(String word) {
if (caseSensitive) {
return (String[]) dictionary.get(word);
}
else {
//System.err.println(java.util.Arrays.asList((String[]) dictionary.get(word.toLowerCase())));
return (String[]) dictionary.get(word.toLowerCase());
}
} | [
"public",
"String",
"[",
"]",
"getTags",
"(",
"String",
"word",
")",
"{",
"if",
"(",
"caseSensitive",
")",
"{",
"return",
"(",
"String",
"[",
"]",
")",
"dictionary",
".",
"get",
"(",
"word",
")",
";",
"}",
"else",
"{",
"//System.err.println(java.util.Arr... | Returns a list of valid tags for the specified word.
@param word The word.
@return A list of valid tags for the specified word or null if no information is available for that word. | [
"Returns",
"a",
"list",
"of",
"valid",
"tags",
"for",
"the",
"specified",
"word",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/postag/POSDictionary.java#L74-L82 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getDomain | public Annotation getDomain() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domain == null)
jcasType.jcas.throwFeatMissing("domain", "de.julielab.jules.types.OntRelationMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(add... | java | public Annotation getDomain() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domain == null)
jcasType.jcas.throwFeatMissing("domain", "de.julielab.jules.types.OntRelationMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(add... | [
"public",
"Annotation",
"getDomain",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domain",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing... | getter for domain - gets
@generated
@return value of the feature | [
"getter",
"for",
"domain",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L86-L89 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setDomain | public void setDomain(Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domain == null)
jcasType.jcas.throwFeatMissing("domain", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).casFea... | java | public void setDomain(Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domain == null)
jcasType.jcas.throwFeatMissing("domain", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).casFea... | [
"public",
"void",
"setDomain",
"(",
"Annotation",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domain",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
... | setter for domain - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"domain",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L95-L98 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getRange | public Annotation getRange() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_range == null)
jcasType.jcas.throwFeatMissing("range", "de.julielab.jules.types.OntRelationMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ... | java | public Annotation getRange() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_range == null)
jcasType.jcas.throwFeatMissing("range", "de.julielab.jules.types.OntRelationMention");
return (Annotation)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ... | [
"public",
"Annotation",
"getRange",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_range",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",... | getter for range - gets
@generated
@return value of the feature | [
"getter",
"for",
"range",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L108-L111 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setRange | public void setRange(Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_range == null)
jcasType.jcas.throwFeatMissing("range", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).casFeatCo... | java | public void setRange(Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_range == null)
jcasType.jcas.throwFeatMissing("range", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).casFeatCo... | [
"public",
"void",
"setRange",
"(",
"Annotation",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_range",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"t... | setter for range - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"range",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L117-L120 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getDomainList | public FSArray getDomainList() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
return (FSArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefVal... | java | public FSArray getDomainList() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
return (FSArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefVal... | [
"public",
"FSArray",
"getDomainList",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domainList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMi... | getter for domainList - gets
@generated
@return value of the feature | [
"getter",
"for",
"domainList",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L130-L133 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setDomainList | public void setDomainList(FSArray v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasTyp... | java | public void setDomainList(FSArray v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasTyp... | [
"public",
"void",
"setDomainList",
"(",
"FSArray",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domainList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".... | setter for domainList - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"domainList",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L139-L142 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getDomainList | public Annotation getDomainList(int i) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ... | java | public Annotation getDomainList(int i) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ... | [
"public",
"Annotation",
"getDomainList",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domainList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
... | indexed getter for domainList - gets an indexed value -
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"domainList",
"-",
"gets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L149-L153 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setDomainList | public void setDomainList(int i, Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefVal... | java | public void setDomainList(int i, Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_domainList == null)
jcasType.jcas.throwFeatMissing("domainList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefVal... | [
"public",
"void",
"setDomainList",
"(",
"int",
"i",
",",
"Annotation",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_domainList",
"==",
"null",
")",
"jcasTy... | indexed setter for domainList - sets an indexed value -
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"domainList",
"-",
"sets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L160-L164 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getRangeList | public FSArray getRangeList() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
return (FSArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(... | java | public FSArray getRangeList() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
return (FSArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(... | [
"public",
"FSArray",
"getRangeList",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMiss... | getter for rangeList - gets
@generated
@return value of the feature | [
"getter",
"for",
"rangeList",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L174-L177 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setRangeList | public void setRangeList(FSArray v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).... | java | public void setRangeList(FSArray v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setRefValue(addr, ((OntRelationMention_Type)jcasType).... | [
"public",
"void",
"setRangeList",
"(",
"FSArray",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",... | setter for rangeList - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"rangeList",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L183-L186 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getRangeList | public Annotation getRangeList(int i) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((O... | java | public Annotation getRangeList(int i) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((O... | [
"public",
"Annotation",
"getRangeList",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeList",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".... | indexed getter for rangeList - gets an indexed value -
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"rangeList",
"-",
"gets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L193-L197 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setRangeList | public void setRangeList(int i, Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(... | java | public void setRangeList(int i, Annotation v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_rangeList == null)
jcasType.jcas.throwFeatMissing("rangeList", "de.julielab.jules.types.OntRelationMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(... | [
"public",
"void",
"setRangeList",
"(",
"int",
"i",
",",
"Annotation",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_rangeList",
"==",
"null",
")",
"jcasType... | indexed setter for rangeList - sets an indexed value -
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"rangeList",
"-",
"sets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L204-L208 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getOntRelationId | public String getOntRelationId() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_ontRelationId == null)
jcasType.jcas.throwFeatMissing("ontRelationId", "de.julielab.jules.types.OntRelationMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((OntRelationMention_... | java | public String getOntRelationId() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_ontRelationId == null)
jcasType.jcas.throwFeatMissing("ontRelationId", "de.julielab.jules.types.OntRelationMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((OntRelationMention_... | [
"public",
"String",
"getOntRelationId",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_ontRelationId",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwF... | getter for ontRelationId - gets ID of the ontology relation the relation mention refers to.
@generated
@return value of the feature | [
"getter",
"for",
"ontRelationId",
"-",
"gets",
"ID",
"of",
"the",
"ontology",
"relation",
"the",
"relation",
"mention",
"refers",
"to",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L240-L243 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setOntRelationId | public void setOntRelationId(String v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_ontRelationId == null)
jcasType.jcas.throwFeatMissing("ontRelationId", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setStringValue(addr, ((OntRelationMention_T... | java | public void setOntRelationId(String v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_ontRelationId == null)
jcasType.jcas.throwFeatMissing("ontRelationId", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setStringValue(addr, ((OntRelationMention_T... | [
"public",
"void",
"setOntRelationId",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_ontRelationId",
"==",
"null",
")",
"jcasType",
".",
"jcas",... | setter for ontRelationId - sets ID of the ontology relation the relation mention refers to.
@generated
@param v value to set into the feature | [
"setter",
"for",
"ontRelationId",
"-",
"sets",
"ID",
"of",
"the",
"ontology",
"relation",
"the",
"relation",
"mention",
"refers",
"to",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L249-L252 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.getSourceOntology | public String getSourceOntology() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_sourceOntology == null)
jcasType.jcas.throwFeatMissing("sourceOntology", "de.julielab.jules.types.OntRelationMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((OntRelationMenti... | java | public String getSourceOntology() {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_sourceOntology == null)
jcasType.jcas.throwFeatMissing("sourceOntology", "de.julielab.jules.types.OntRelationMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((OntRelationMenti... | [
"public",
"String",
"getSourceOntology",
"(",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_sourceOntology",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"thro... | getter for sourceOntology - gets Ontology defining the relation to which the relation mention refers to.
@generated
@return value of the feature | [
"getter",
"for",
"sourceOntology",
"-",
"gets",
"Ontology",
"defining",
"the",
"relation",
"to",
"which",
"the",
"relation",
"mention",
"refers",
"to",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L262-L265 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java | OntRelationMention.setSourceOntology | public void setSourceOntology(String v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_sourceOntology == null)
jcasType.jcas.throwFeatMissing("sourceOntology", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setStringValue(addr, ((OntRelationMentio... | java | public void setSourceOntology(String v) {
if (OntRelationMention_Type.featOkTst && ((OntRelationMention_Type)jcasType).casFeat_sourceOntology == null)
jcasType.jcas.throwFeatMissing("sourceOntology", "de.julielab.jules.types.OntRelationMention");
jcasType.ll_cas.ll_setStringValue(addr, ((OntRelationMentio... | [
"public",
"void",
"setSourceOntology",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"OntRelationMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"OntRelationMention_Type",
")",
"jcasType",
")",
".",
"casFeat_sourceOntology",
"==",
"null",
")",
"jcasType",
".",
"jcas... | setter for sourceOntology - sets Ontology defining the relation to which the relation mention refers to.
@generated
@param v value to set into the feature | [
"setter",
"for",
"sourceOntology",
"-",
"sets",
"Ontology",
"defining",
"the",
"relation",
"to",
"which",
"the",
"relation",
"mention",
"refers",
"to",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/OntRelationMention.java#L271-L274 | train |
BlueBrain/bluima | utils/blue_commons/src/main/java/ch/epfl/bbp/io/IOUtils.java | IOUtils.sniffContentType | protected static String sniffContentType(InputStream inputStream)
throws IOException {
if (inputStream == null)
return null;
byte[] bytes = new byte[8];
inputStream.read(bytes);
String[] hex = new String[8];
String hexString = "";
for (int i = 0; i... | java | protected static String sniffContentType(InputStream inputStream)
throws IOException {
if (inputStream == null)
return null;
byte[] bytes = new byte[8];
inputStream.read(bytes);
String[] hex = new String[8];
String hexString = "";
for (int i = 0; i... | [
"protected",
"static",
"String",
"sniffContentType",
"(",
"InputStream",
"inputStream",
")",
"throws",
"IOException",
"{",
"if",
"(",
"inputStream",
"==",
"null",
")",
"return",
"null",
";",
"byte",
"[",
"]",
"bytes",
"=",
"new",
"byte",
"[",
"8",
"]",
";"... | Sniffs the content type for images and other common types
@param inpuStream
the inputStream to sniff
@return the content type of the stream if it matches a known signature,
otherwise Null
@throws IOException | [
"Sniffs",
"the",
"content",
"type",
"for",
"images",
"and",
"other",
"common",
"types"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/utils/blue_commons/src/main/java/ch/epfl/bbp/io/IOUtils.java#L101-L126 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/Front.java | Front.getDefListOrListOrNotes | public java.util.List<Object> getDefListOrListOrNotes() {
if (defListOrListOrNotes == null) {
defListOrListOrNotes = new ArrayList<Object>();
}
return this.defListOrListOrNotes;
} | java | public java.util.List<Object> getDefListOrListOrNotes() {
if (defListOrListOrNotes == null) {
defListOrListOrNotes = new ArrayList<Object>();
}
return this.defListOrListOrNotes;
} | [
"public",
"java",
".",
"util",
".",
"List",
"<",
"Object",
">",
"getDefListOrListOrNotes",
"(",
")",
"{",
"if",
"(",
"defListOrListOrNotes",
"==",
"null",
")",
"{",
"defListOrListOrNotes",
"=",
"new",
"ArrayList",
"<",
"Object",
">",
"(",
")",
";",
"}",
... | Gets the value of the defListOrListOrNotes property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the defListOrListOrNotes property.
... | [
"Gets",
"the",
"value",
"of",
"the",
"defListOrListOrNotes",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/Front.java#L137-L142 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/pubmed/EndingDate.java | EndingDate.getMonthOrDayOrSeason | public List<java.lang.Object> getMonthOrDayOrSeason() {
if (monthOrDayOrSeason == null) {
monthOrDayOrSeason = new ArrayList<java.lang.Object>();
}
return this.monthOrDayOrSeason;
} | java | public List<java.lang.Object> getMonthOrDayOrSeason() {
if (monthOrDayOrSeason == null) {
monthOrDayOrSeason = new ArrayList<java.lang.Object>();
}
return this.monthOrDayOrSeason;
} | [
"public",
"List",
"<",
"java",
".",
"lang",
".",
"Object",
">",
"getMonthOrDayOrSeason",
"(",
")",
"{",
"if",
"(",
"monthOrDayOrSeason",
"==",
"null",
")",
"{",
"monthOrDayOrSeason",
"=",
"new",
"ArrayList",
"<",
"java",
".",
"lang",
".",
"Object",
">",
... | Gets the value of the monthOrDayOrSeason property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the monthOrDayOrSeason property.
<p>... | [
"Gets",
"the",
"value",
"of",
"the",
"monthOrDayOrSeason",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/pubmed/EndingDate.java#L89-L94 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.getObjectType | public String getObjectType() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectType == null)
jcasType.jcas.throwFeatMissing("objectType", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectType);} | java | public String getObjectType() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectType == null)
jcasType.jcas.throwFeatMissing("objectType", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectType);} | [
"public",
"String",
"getObjectType",
"(",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectType",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
... | getter for objectType - gets such as figure, table, boxed-text etc.
@generated
@return value of the feature | [
"getter",
"for",
"objectType",
"-",
"gets",
"such",
"as",
"figure",
"table",
"boxed",
"-",
"text",
"etc",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L85-L88 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.setObjectType | public void setObjectType(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectType == null)
jcasType.jcas.throwFeatMissing("objectType", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectType, v);... | java | public void setObjectType(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectType == null)
jcasType.jcas.throwFeatMissing("objectType", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectType, v);... | [
"public",
"void",
"setObjectType",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectType",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMi... | setter for objectType - sets such as figure, table, boxed-text etc.
@generated
@param v value to set into the feature | [
"setter",
"for",
"objectType",
"-",
"sets",
"such",
"as",
"figure",
"table",
"boxed",
"-",
"text",
"etc",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L94-L97 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.getObjectId | public String getObjectId() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectId == null)
jcasType.jcas.throwFeatMissing("objectId", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectId);} | java | public String getObjectId() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectId == null)
jcasType.jcas.throwFeatMissing("objectId", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectId);} | [
"public",
"String",
"getObjectId",
"(",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectId",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"o... | getter for objectId - gets the id of the object as found in the text
@generated
@return value of the feature | [
"getter",
"for",
"objectId",
"-",
"gets",
"the",
"id",
"of",
"the",
"object",
"as",
"found",
"in",
"the",
"text"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L107-L110 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.setObjectId | public void setObjectId(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectId == null)
jcasType.jcas.throwFeatMissing("objectId", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectId, v);} | java | public void setObjectId(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectId == null)
jcasType.jcas.throwFeatMissing("objectId", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectId, v);} | [
"public",
"void",
"setObjectId",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectId",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissin... | setter for objectId - sets the id of the object as found in the text
@generated
@param v value to set into the feature | [
"setter",
"for",
"objectId",
"-",
"sets",
"the",
"id",
"of",
"the",
"object",
"as",
"found",
"in",
"the",
"text"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L116-L119 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.getObjectLabel | public String getObjectLabel() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectLabel == null)
jcasType.jcas.throwFeatMissing("objectLabel", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectLabel... | java | public String getObjectLabel() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectLabel == null)
jcasType.jcas.throwFeatMissing("objectLabel", "de.julielab.jules.types.TextObject");
return jcasType.ll_cas.ll_getStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectLabel... | [
"public",
"String",
"getObjectLabel",
"(",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectLabel",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
... | getter for objectLabel - gets the label of an object
@generated
@return value of the feature | [
"getter",
"for",
"objectLabel",
"-",
"gets",
"the",
"label",
"of",
"an",
"object"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L129-L132 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.setObjectLabel | public void setObjectLabel(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectLabel == null)
jcasType.jcas.throwFeatMissing("objectLabel", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectLabel,... | java | public void setObjectLabel(String v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectLabel == null)
jcasType.jcas.throwFeatMissing("objectLabel", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setStringValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectLabel,... | [
"public",
"void",
"setObjectLabel",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectLabel",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeat... | setter for objectLabel - sets the label of an object
@generated
@param v value to set into the feature | [
"setter",
"for",
"objectLabel",
"-",
"sets",
"the",
"label",
"of",
"an",
"object"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L138-L141 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.getObjectCaption | public Caption getObjectCaption() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectCaption == null)
jcasType.jcas.throwFeatMissing("objectCaption", "de.julielab.jules.types.TextObject");
return (Caption)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Text... | java | public Caption getObjectCaption() {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectCaption == null)
jcasType.jcas.throwFeatMissing("objectCaption", "de.julielab.jules.types.TextObject");
return (Caption)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Text... | [
"public",
"Caption",
"getObjectCaption",
"(",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectCaption",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | getter for objectCaption - gets the caption that comes with the object
@generated
@return value of the feature | [
"getter",
"for",
"objectCaption",
"-",
"gets",
"the",
"caption",
"that",
"comes",
"with",
"the",
"object"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L151-L154 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java | TextObject.setObjectCaption | public void setObjectCaption(Caption v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectCaption == null)
jcasType.jcas.throwFeatMissing("objectCaption", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setRefValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectCa... | java | public void setObjectCaption(Caption v) {
if (TextObject_Type.featOkTst && ((TextObject_Type)jcasType).casFeat_objectCaption == null)
jcasType.jcas.throwFeatMissing("objectCaption", "de.julielab.jules.types.TextObject");
jcasType.ll_cas.ll_setRefValue(addr, ((TextObject_Type)jcasType).casFeatCode_objectCa... | [
"public",
"void",
"setObjectCaption",
"(",
"Caption",
"v",
")",
"{",
"if",
"(",
"TextObject_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"TextObject_Type",
")",
"jcasType",
")",
".",
"casFeat_objectCaption",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"thro... | setter for objectCaption - sets the caption that comes with the object
@generated
@param v value to set into the feature | [
"setter",
"for",
"objectCaption",
"-",
"sets",
"the",
"caption",
"that",
"comes",
"with",
"the",
"object"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/TextObject.java#L160-L163 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ace/Annotation.java | Annotation.getAce_role | public String getAce_role() {
if (Annotation_Type.featOkTst && ((Annotation_Type)jcasType).casFeat_ace_role == null)
jcasType.jcas.throwFeatMissing("ace_role", "de.julielab.jules.types.ace.Annotation");
return jcasType.ll_cas.ll_getStringValue(addr, ((Annotation_Type)jcasType).casFeatCode_ace_role);} | java | public String getAce_role() {
if (Annotation_Type.featOkTst && ((Annotation_Type)jcasType).casFeat_ace_role == null)
jcasType.jcas.throwFeatMissing("ace_role", "de.julielab.jules.types.ace.Annotation");
return jcasType.ll_cas.ll_getStringValue(addr, ((Annotation_Type)jcasType).casFeatCode_ace_role);} | [
"public",
"String",
"getAce_role",
"(",
")",
"{",
"if",
"(",
"Annotation_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Annotation_Type",
")",
"jcasType",
")",
".",
"casFeat_ace_role",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"a... | getter for ace_role - gets
@generated
@return value of the feature | [
"getter",
"for",
"ace_role",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ace/Annotation.java#L85-L88 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ace/Annotation.java | Annotation.setAce_role | public void setAce_role(String v) {
if (Annotation_Type.featOkTst && ((Annotation_Type)jcasType).casFeat_ace_role == null)
jcasType.jcas.throwFeatMissing("ace_role", "de.julielab.jules.types.ace.Annotation");
jcasType.ll_cas.ll_setStringValue(addr, ((Annotation_Type)jcasType).casFeatCode_ace_role, v);} | java | public void setAce_role(String v) {
if (Annotation_Type.featOkTst && ((Annotation_Type)jcasType).casFeat_ace_role == null)
jcasType.jcas.throwFeatMissing("ace_role", "de.julielab.jules.types.ace.Annotation");
jcasType.ll_cas.ll_setStringValue(addr, ((Annotation_Type)jcasType).casFeatCode_ace_role, v);} | [
"public",
"void",
"setAce_role",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"Annotation_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"Annotation_Type",
")",
"jcasType",
")",
".",
"casFeat_ace_role",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissin... | setter for ace_role - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"ace_role",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/ace/Annotation.java#L94-L97 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java | SentenceDetectorME.sentDetect | public String[] sentDetect(String s) {
int[] starts = sentPosDetect(s);
if (starts.length == 0) {
return new String[] {s};
}
boolean leftover = starts[starts.length - 1] != s.length();
String[] sents = new String[leftover? starts.length + 1 : starts.length];
sents[0] = s.substring(0,starts[0])... | java | public String[] sentDetect(String s) {
int[] starts = sentPosDetect(s);
if (starts.length == 0) {
return new String[] {s};
}
boolean leftover = starts[starts.length - 1] != s.length();
String[] sents = new String[leftover? starts.length + 1 : starts.length];
sents[0] = s.substring(0,starts[0])... | [
"public",
"String",
"[",
"]",
"sentDetect",
"(",
"String",
"s",
")",
"{",
"int",
"[",
"]",
"starts",
"=",
"sentPosDetect",
"(",
"s",
")",
";",
"if",
"(",
"starts",
".",
"length",
"==",
"0",
")",
"{",
"return",
"new",
"String",
"[",
"]",
"{",
"s",... | Detect sentences in a String.
@param s The string to be processed.
@return A string array containing individual sentences as elements. | [
"Detect",
"sentences",
"in",
"a",
"String",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java#L120-L138 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java | SentenceDetectorME.sentPosDetect | public int[] sentPosDetect(String s) {
double sentProb = 1;
sentProbs.clear();
StringBuffer sb = new StringBuffer(s);
List enders = scanner.getPositions(s);
List positions = new ArrayList(enders.size());
for (int i = 0, end = enders.size(), index = 0; i < end; i++) {
Integer candidate = (... | java | public int[] sentPosDetect(String s) {
double sentProb = 1;
sentProbs.clear();
StringBuffer sb = new StringBuffer(s);
List enders = scanner.getPositions(s);
List positions = new ArrayList(enders.size());
for (int i = 0, end = enders.size(), index = 0; i < end; i++) {
Integer candidate = (... | [
"public",
"int",
"[",
"]",
"sentPosDetect",
"(",
"String",
"s",
")",
"{",
"double",
"sentProb",
"=",
"1",
";",
"sentProbs",
".",
"clear",
"(",
")",
";",
"StringBuffer",
"sb",
"=",
"new",
"StringBuffer",
"(",
"s",
")",
";",
"List",
"enders",
"=",
"sca... | Detect the position of the first words of sentences in a String.
@param s The string to be processed.
@return A integer array containing the positions of the end index of
every sentence | [
"Detect",
"the",
"position",
"of",
"the",
"first",
"words",
"of",
"sentences",
"in",
"a",
"String",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java#L160-L194 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java | SentenceDetectorME.train | public static GISModel train(File inFile, int iterations, int cut, EndOfSentenceScanner scanner) throws IOException {
EventStream es;
DataStream ds;
Reader reader;
reader = new BufferedReader(new FileReader(inFile));
ds = new PlainTextByLineDataStream(reader);
es = new SDEventStream(ds, scanner... | java | public static GISModel train(File inFile, int iterations, int cut, EndOfSentenceScanner scanner) throws IOException {
EventStream es;
DataStream ds;
Reader reader;
reader = new BufferedReader(new FileReader(inFile));
ds = new PlainTextByLineDataStream(reader);
es = new SDEventStream(ds, scanner... | [
"public",
"static",
"GISModel",
"train",
"(",
"File",
"inFile",
",",
"int",
"iterations",
",",
"int",
"cut",
",",
"EndOfSentenceScanner",
"scanner",
")",
"throws",
"IOException",
"{",
"EventStream",
"es",
";",
"DataStream",
"ds",
";",
"Reader",
"reader",
";",
... | Use this training method if you wish to supply an end of
sentence scanner which provides a different set of ending chars
other than the default ones. They are "\\.|!|\\?|\\\"|\\)". | [
"Use",
"this",
"training",
"method",
"if",
"you",
"wish",
"to",
"supply",
"an",
"end",
"of",
"sentence",
"scanner",
"which",
"provides",
"a",
"different",
"set",
"of",
"ending",
"chars",
"other",
"than",
"the",
"default",
"ones",
".",
"They",
"are",
"\\\\"... | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/sentdetect/SentenceDetectorME.java#L238-L247 | train |
BlueBrain/bluima | modules/bluima_jsre/src/main/java/org/itc/irst/tcc/sre/KernelMatrix.java | KernelMatrix.calculateKernelMatrix | private void calculateKernelMatrix(ExampleSet set, ZipModel model) throws Exception
{
// save kernel matrix
File matrixFile = File.createTempFile("kernel-matrix", null);
matrixFile.deleteOnExit();
PrintWriter pw = new PrintWriter(new FileWriter(matrixFile));
DecimalFormat decFormatter = new DecimalFormat("... | java | private void calculateKernelMatrix(ExampleSet set, ZipModel model) throws Exception
{
// save kernel matrix
File matrixFile = File.createTempFile("kernel-matrix", null);
matrixFile.deleteOnExit();
PrintWriter pw = new PrintWriter(new FileWriter(matrixFile));
DecimalFormat decFormatter = new DecimalFormat("... | [
"private",
"void",
"calculateKernelMatrix",
"(",
"ExampleSet",
"set",
",",
"ZipModel",
"model",
")",
"throws",
"Exception",
"{",
"// save kernel matrix",
"File",
"matrixFile",
"=",
"File",
".",
"createTempFile",
"(",
"\"kernel-matrix\"",
",",
"null",
")",
";",
"ma... | calculate kernel matrix | [
"calculate",
"kernel",
"matrix"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_jsre/src/main/java/org/itc/irst/tcc/sre/KernelMatrix.java#L216-L312 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/pubmed/Article.java | Article.getPaginationOrELocationID | public List<java.lang.Object> getPaginationOrELocationID() {
if (paginationOrELocationID == null) {
paginationOrELocationID = new ArrayList<java.lang.Object>();
}
return this.paginationOrELocationID;
} | java | public List<java.lang.Object> getPaginationOrELocationID() {
if (paginationOrELocationID == null) {
paginationOrELocationID = new ArrayList<java.lang.Object>();
}
return this.paginationOrELocationID;
} | [
"public",
"List",
"<",
"java",
".",
"lang",
".",
"Object",
">",
"getPaginationOrELocationID",
"(",
")",
"{",
"if",
"(",
"paginationOrELocationID",
"==",
"null",
")",
"{",
"paginationOrELocationID",
"=",
"new",
"ArrayList",
"<",
"java",
".",
"lang",
".",
"Obj... | Gets the value of the paginationOrELocationID property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the paginationOrELocationID prop... | [
"Gets",
"the",
"value",
"of",
"the",
"paginationOrELocationID",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/pubmed/Article.java#L171-L176 | train |
BlueBrain/bluima | modules/bluima_text2pmid/src/main/java/ch/epfl/bbp/uima/txt2pmid/LuceneHelper.java | LuceneHelper.subsumes | public static float subsumes(String haystack, final String needle) {
if (needle == null || needle.length() < 0 || haystack == null
|| haystack.length() < 0)
return 0f;
try {
// index the cleaned text
RAMDirectory idx = new RAMDirectory();
... | java | public static float subsumes(String haystack, final String needle) {
if (needle == null || needle.length() < 0 || haystack == null
|| haystack.length() < 0)
return 0f;
try {
// index the cleaned text
RAMDirectory idx = new RAMDirectory();
... | [
"public",
"static",
"float",
"subsumes",
"(",
"String",
"haystack",
",",
"final",
"String",
"needle",
")",
"{",
"if",
"(",
"needle",
"==",
"null",
"||",
"needle",
".",
"length",
"(",
")",
"<",
"0",
"||",
"haystack",
"==",
"null",
"||",
"haystack",
".",... | depends on document size, but > 0.01 should be a good threshold
@return a score that reflects if needle subsumes haystack | [
"depends",
"on",
"document",
"size",
"but",
">",
"0",
".",
"01",
"should",
"be",
"a",
"good",
"threshold"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_text2pmid/src/main/java/ch/epfl/bbp/uima/txt2pmid/LuceneHelper.java#L148-L182 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/bootstrep/RegulationOfGeneExpression.java | RegulationOfGeneExpression.getPhysicalContact | public String getPhysicalContact() {
if (RegulationOfGeneExpression_Type.featOkTst && ((RegulationOfGeneExpression_Type)jcasType).casFeat_physicalContact == null)
jcasType.jcas.throwFeatMissing("physicalContact", "de.julielab.jules.types.bootstrep.RegulationOfGeneExpression");
return jcasType.ll_cas.ll_ge... | java | public String getPhysicalContact() {
if (RegulationOfGeneExpression_Type.featOkTst && ((RegulationOfGeneExpression_Type)jcasType).casFeat_physicalContact == null)
jcasType.jcas.throwFeatMissing("physicalContact", "de.julielab.jules.types.bootstrep.RegulationOfGeneExpression");
return jcasType.ll_cas.ll_ge... | [
"public",
"String",
"getPhysicalContact",
"(",
")",
"{",
"if",
"(",
"RegulationOfGeneExpression_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"RegulationOfGeneExpression_Type",
")",
"jcasType",
")",
".",
"casFeat_physicalContact",
"==",
"null",
")",
"jcasType",
".",
"jca... | getter for physicalContact - gets yes, no, unknown
@generated
@return value of the feature | [
"getter",
"for",
"physicalContact",
"-",
"gets",
"yes",
"no",
"unknown"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/bootstrep/RegulationOfGeneExpression.java#L87-L90 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/bootstrep/RegulationOfGeneExpression.java | RegulationOfGeneExpression.setPhysicalContact | public void setPhysicalContact(String v) {
if (RegulationOfGeneExpression_Type.featOkTst && ((RegulationOfGeneExpression_Type)jcasType).casFeat_physicalContact == null)
jcasType.jcas.throwFeatMissing("physicalContact", "de.julielab.jules.types.bootstrep.RegulationOfGeneExpression");
jcasType.ll_cas.ll_set... | java | public void setPhysicalContact(String v) {
if (RegulationOfGeneExpression_Type.featOkTst && ((RegulationOfGeneExpression_Type)jcasType).casFeat_physicalContact == null)
jcasType.jcas.throwFeatMissing("physicalContact", "de.julielab.jules.types.bootstrep.RegulationOfGeneExpression");
jcasType.ll_cas.ll_set... | [
"public",
"void",
"setPhysicalContact",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"RegulationOfGeneExpression_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"RegulationOfGeneExpression_Type",
")",
"jcasType",
")",
".",
"casFeat_physicalContact",
"==",
"null",
")",
"jcasTyp... | setter for physicalContact - sets yes, no, unknown
@generated
@param v value to set into the feature | [
"setter",
"for",
"physicalContact",
"-",
"sets",
"yes",
"no",
"unknown"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/bootstrep/RegulationOfGeneExpression.java#L96-L99 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/TableWrap.java | TableWrap.getDispQuoteOrSpeechOrStatement | public java.util.List<Object> getDispQuoteOrSpeechOrStatement() {
if (dispQuoteOrSpeechOrStatement == null) {
dispQuoteOrSpeechOrStatement = new ArrayList<Object>();
}
return this.dispQuoteOrSpeechOrStatement;
} | java | public java.util.List<Object> getDispQuoteOrSpeechOrStatement() {
if (dispQuoteOrSpeechOrStatement == null) {
dispQuoteOrSpeechOrStatement = new ArrayList<Object>();
}
return this.dispQuoteOrSpeechOrStatement;
} | [
"public",
"java",
".",
"util",
".",
"List",
"<",
"Object",
">",
"getDispQuoteOrSpeechOrStatement",
"(",
")",
"{",
"if",
"(",
"dispQuoteOrSpeechOrStatement",
"==",
"null",
")",
"{",
"dispQuoteOrSpeechOrStatement",
"=",
"new",
"ArrayList",
"<",
"Object",
">",
"(",... | Gets the value of the dispQuoteOrSpeechOrStatement property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the dispQuoteOrSpeechOrStat... | [
"Gets",
"the",
"value",
"of",
"the",
"dispQuoteOrSpeechOrStatement",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/TableWrap.java#L303-L308 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/TableWrap.java | TableWrap.getTableWrapFootOrAttribOrPermissions | public java.util.List<Object> getTableWrapFootOrAttribOrPermissions() {
if (tableWrapFootOrAttribOrPermissions == null) {
tableWrapFootOrAttribOrPermissions = new ArrayList<Object>();
}
return this.tableWrapFootOrAttribOrPermissions;
} | java | public java.util.List<Object> getTableWrapFootOrAttribOrPermissions() {
if (tableWrapFootOrAttribOrPermissions == null) {
tableWrapFootOrAttribOrPermissions = new ArrayList<Object>();
}
return this.tableWrapFootOrAttribOrPermissions;
} | [
"public",
"java",
".",
"util",
".",
"List",
"<",
"Object",
">",
"getTableWrapFootOrAttribOrPermissions",
"(",
")",
"{",
"if",
"(",
"tableWrapFootOrAttribOrPermissions",
"==",
"null",
")",
"{",
"tableWrapFootOrAttribOrPermissions",
"=",
"new",
"ArrayList",
"<",
"Obje... | Gets the value of the tableWrapFootOrAttribOrPermissions property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the tableWrapFootOrAt... | [
"Gets",
"the",
"value",
"of",
"the",
"tableWrapFootOrAttribOrPermissions",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/TableWrap.java#L334-L339 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.getCategories | public StringArray getCategories() {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((GOMentio... | java | public StringArray getCategories() {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((GOMentio... | [
"public",
"StringArray",
"getCategories",
"(",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_categories",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",... | getter for categories - gets created for the shared task, here we add the group
@generated
@return value of the feature | [
"getter",
"for",
"categories",
"-",
"gets",
"created",
"for",
"the",
"shared",
"task",
"here",
"we",
"add",
"the",
"group"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L86-L89 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.setCategories | public void setCategories(StringArray v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.ll_cas.ll_setRefValue(addr, ((GOMention_Type)jcasType).casFeatCode_categories, jcasT... | java | public void setCategories(StringArray v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.ll_cas.ll_setRefValue(addr, ((GOMention_Type)jcasType).casFeatCode_categories, jcasT... | [
"public",
"void",
"setCategories",
"(",
"StringArray",
"v",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_categories",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFea... | setter for categories - sets created for the shared task, here we add the group
@generated
@param v value to set into the feature | [
"setter",
"for",
"categories",
"-",
"sets",
"created",
"for",
"the",
"shared",
"task",
"here",
"we",
"add",
"the",
"group"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L95-L98 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.getCategories | public String getCategories(int i) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((GOMention_Type)jcasType).casF... | java | public String getCategories(int i) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((GOMention_Type)jcasType).casF... | [
"public",
"String",
"getCategories",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_categories",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissi... | indexed getter for categories - gets an indexed value - created for the shared task, here we add the group
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"categories",
"-",
"gets",
"an",
"indexed",
"value",
"-",
"created",
"for",
"the",
"shared",
"task",
"here",
"we",
"add",
"the",
"group"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L105-L109 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.setCategories | public void setCategories(int i, String v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((GOMention_Type)jcasT... | java | public void setCategories(int i, String v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_categories == null)
jcasType.jcas.throwFeatMissing("categories", "de.julielab.jules.types.GOMention");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((GOMention_Type)jcasT... | [
"public",
"void",
"setCategories",
"(",
"int",
"i",
",",
"String",
"v",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_categories",
"==",
"null",
")",
"jcasType",
".",
"jcas",
... | indexed setter for categories - sets an indexed value - created for the shared task, here we add the group
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"categories",
"-",
"sets",
"an",
"indexed",
"value",
"-",
"created",
"for",
"the",
"shared",
"task",
"here",
"we",
"add",
"the",
"group"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L116-L120 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.getGoID | public String getGoID() {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_goID == null)
jcasType.jcas.throwFeatMissing("goID", "de.julielab.jules.types.GOMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((GOMention_Type)jcasType).casFeatCode_goID);} | java | public String getGoID() {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_goID == null)
jcasType.jcas.throwFeatMissing("goID", "de.julielab.jules.types.GOMention");
return jcasType.ll_cas.ll_getStringValue(addr, ((GOMention_Type)jcasType).casFeatCode_goID);} | [
"public",
"String",
"getGoID",
"(",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_goID",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"goID\"",
... | getter for goID - gets
@generated
@return value of the feature | [
"getter",
"for",
"goID",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L130-L133 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java | GOMention.setGoID | public void setGoID(String v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_goID == null)
jcasType.jcas.throwFeatMissing("goID", "de.julielab.jules.types.GOMention");
jcasType.ll_cas.ll_setStringValue(addr, ((GOMention_Type)jcasType).casFeatCode_goID, v);} | java | public void setGoID(String v) {
if (GOMention_Type.featOkTst && ((GOMention_Type)jcasType).casFeat_goID == null)
jcasType.jcas.throwFeatMissing("goID", "de.julielab.jules.types.GOMention");
jcasType.ll_cas.ll_setStringValue(addr, ((GOMention_Type)jcasType).casFeatCode_goID, v);} | [
"public",
"void",
"setGoID",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"GOMention_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"GOMention_Type",
")",
"jcasType",
")",
".",
"casFeat_goID",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",... | setter for goID - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"goID",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/de/julielab/jules/types/GOMention.java#L139-L142 | train |
BlueBrain/bluima | modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/ListItem.java | ListItem.getPOrDefListOrList | public java.util.List<Object> getPOrDefListOrList() {
if (pOrDefListOrList == null) {
pOrDefListOrList = new ArrayList<Object>();
}
return this.pOrDefListOrList;
} | java | public java.util.List<Object> getPOrDefListOrList() {
if (pOrDefListOrList == null) {
pOrDefListOrList = new ArrayList<Object>();
}
return this.pOrDefListOrList;
} | [
"public",
"java",
".",
"util",
".",
"List",
"<",
"Object",
">",
"getPOrDefListOrList",
"(",
")",
"{",
"if",
"(",
"pOrDefListOrList",
"==",
"null",
")",
"{",
"pOrDefListOrList",
"=",
"new",
"ArrayList",
"<",
"Object",
">",
"(",
")",
";",
"}",
"return",
... | Gets the value of the pOrDefListOrList property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the pOrDefListOrList property.
<p>
For... | [
"Gets",
"the",
"value",
"of",
"the",
"pOrDefListOrList",
"property",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_xml/src/main/java/ch/epfl/bbp/uima/xml/archivearticle3/ListItem.java#L119-L124 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java | ParserME.parse | public Parse parse(Parse tokens) {
Parse p = parse(tokens,1)[0];
setParents(p);
return p;
} | java | public Parse parse(Parse tokens) {
Parse p = parse(tokens,1)[0];
setParents(p);
return p;
} | [
"public",
"Parse",
"parse",
"(",
"Parse",
"tokens",
")",
"{",
"Parse",
"p",
"=",
"parse",
"(",
"tokens",
",",
"1",
")",
"[",
"0",
"]",
";",
"setParents",
"(",
"p",
")",
";",
"return",
"p",
";",
"}"
] | Returns a parse for the specified parse of tokens.
@param tokens The root node of a flat parse containing only tokens.
@return A full parse of the specified tokens or the flat chunks of the tokens if a fullparse could not be found. | [
"Returns",
"a",
"parse",
"for",
"the",
"specified",
"parse",
"of",
"tokens",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java#L301-L305 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java | ParserME.mapParseIndex | private int mapParseIndex(int index, Parse[] nonPunctParses, Parse[] parses) {
int parseIndex = index;
while (parses[parseIndex] != nonPunctParses[index]) {
parseIndex++;
}
return parseIndex;
} | java | private int mapParseIndex(int index, Parse[] nonPunctParses, Parse[] parses) {
int parseIndex = index;
while (parses[parseIndex] != nonPunctParses[index]) {
parseIndex++;
}
return parseIndex;
} | [
"private",
"int",
"mapParseIndex",
"(",
"int",
"index",
",",
"Parse",
"[",
"]",
"nonPunctParses",
",",
"Parse",
"[",
"]",
"parses",
")",
"{",
"int",
"parseIndex",
"=",
"index",
";",
"while",
"(",
"parses",
"[",
"parseIndex",
"]",
"!=",
"nonPunctParses",
... | Determines the mapping between the specified index into the specified parses without punctuation to
the coresponding index into the specified parses.
@param index An index into the parses without punctuation.
@param nonPunctParses The parses without punctuation.
@param parses The parses wit punctuation.
@return An inde... | [
"Determines",
"the",
"mapping",
"between",
"the",
"specified",
"index",
"into",
"the",
"specified",
"parses",
"without",
"punctuation",
"to",
"the",
"coresponding",
"index",
"into",
"the",
"specified",
"parses",
"."
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java#L328-L334 | train |
BlueBrain/bluima | modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java | ParserME.collapsePunctuation | public static Parse[] collapsePunctuation(Parse[] chunks, Set punctSet) {
List collapsedParses = new ArrayList(chunks.length);
int lastNonPunct = -1;
int nextNonPunct = -1;
for (int ci=0,cn=chunks.length;ci<cn;ci++) {
if (punctSet.contains(chunks[ci].getType())) {
if (lastNonPunct >= 0) {
... | java | public static Parse[] collapsePunctuation(Parse[] chunks, Set punctSet) {
List collapsedParses = new ArrayList(chunks.length);
int lastNonPunct = -1;
int nextNonPunct = -1;
for (int ci=0,cn=chunks.length;ci<cn;ci++) {
if (punctSet.contains(chunks[ci].getType())) {
if (lastNonPunct >= 0) {
... | [
"public",
"static",
"Parse",
"[",
"]",
"collapsePunctuation",
"(",
"Parse",
"[",
"]",
"chunks",
",",
"Set",
"punctSet",
")",
"{",
"List",
"collapsedParses",
"=",
"new",
"ArrayList",
"(",
"chunks",
".",
"length",
")",
";",
"int",
"lastNonPunct",
"=",
"-",
... | Removes the punctuation from the specified set of chunks, adds it to the parses
adjacent to the punctuation is specified, and returns a new array of parses with the punctuation
removed.
@param chunks A set of parses.
@param punctSet The set of punctuation which is to be removed.
@return An array of parses which is a su... | [
"Removes",
"the",
"punctuation",
"from",
"the",
"specified",
"set",
"of",
"chunks",
"adds",
"it",
"to",
"the",
"parses",
"adjacent",
"to",
"the",
"punctuation",
"is",
"specified",
"and",
"returns",
"a",
"new",
"array",
"of",
"parses",
"with",
"the",
"punctua... | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_opennlp/src/main/java/ch/epfl/bbp/shaded/opennlp/tools/parser/ParserME.java#L579-L607 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getTableId | public int getTableId() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_tableId == null)
jcasType.jcas.throwFeatMissing("tableId", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_tableId);} | java | public int getTableId() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_tableId == null)
jcasType.jcas.throwFeatMissing("tableId", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_tableId);} | [
"public",
"int",
"getTableId",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_tableId",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"tableId\... | getter for tableId - gets the id of this table in the document
@generated
@return value of the feature | [
"getter",
"for",
"tableId",
"-",
"gets",
"the",
"id",
"of",
"this",
"table",
"in",
"the",
"document"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L87-L90 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setTableId | public void setTableId(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_tableId == null)
jcasType.jcas.throwFeatMissing("tableId", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_tableId, v);} | java | public void setTableId(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_tableId == null)
jcasType.jcas.throwFeatMissing("tableId", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_tableId, v);} | [
"public",
"void",
"setTableId",
"(",
"int",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_tableId",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"... | setter for tableId - sets the id of this table in the document
@generated
@param v value to set into the feature | [
"setter",
"for",
"tableId",
"-",
"sets",
"the",
"id",
"of",
"this",
"table",
"in",
"the",
"document"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L96-L99 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getRowCount | public int getRowCount() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_rowCount == null)
jcasType.jcas.throwFeatMissing("rowCount", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_rowCount);} | java | public int getRowCount() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_rowCount == null)
jcasType.jcas.throwFeatMissing("rowCount", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_rowCount);} | [
"public",
"int",
"getRowCount",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_rowCount",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"rowCou... | getter for rowCount - gets the nr of rows
@generated
@return value of the feature | [
"getter",
"for",
"rowCount",
"-",
"gets",
"the",
"nr",
"of",
"rows"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L109-L112 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setRowCount | public void setRowCount(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_rowCount == null)
jcasType.jcas.throwFeatMissing("rowCount", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_rowCount, v);} | java | public void setRowCount(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_rowCount == null)
jcasType.jcas.throwFeatMissing("rowCount", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_rowCount, v);} | [
"public",
"void",
"setRowCount",
"(",
"int",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_rowCount",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | setter for rowCount - sets the nr of rows
@generated
@param v value to set into the feature | [
"setter",
"for",
"rowCount",
"-",
"sets",
"the",
"nr",
"of",
"rows"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L118-L121 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getColumnCount | public int getColumnCount() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_columnCount == null)
jcasType.jcas.throwFeatMissing("columnCount", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_columnCount);} | java | public int getColumnCount() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_columnCount == null)
jcasType.jcas.throwFeatMissing("columnCount", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_columnCount);} | [
"public",
"int",
"getColumnCount",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_columnCount",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"... | getter for columnCount - gets
@generated
@return value of the feature | [
"getter",
"for",
"columnCount",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L131-L134 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setColumnCount | public void setColumnCount(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_columnCount == null)
jcasType.jcas.throwFeatMissing("columnCount", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_columnCount, v);} | java | public void setColumnCount(int v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_columnCount == null)
jcasType.jcas.throwFeatMissing("columnCount", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setIntValue(addr, ((DataTable_Type)jcasType).casFeatCode_columnCount, v);} | [
"public",
"void",
"setColumnCount",
"(",
"int",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_columnCount",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissi... | setter for columnCount - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"columnCount",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L140-L143 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getCaption | public String getCaption() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_caption == null)
jcasType.jcas.throwFeatMissing("caption", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getStringValue(addr, ((DataTable_Type)jcasType).casFeatCode_caption);} | java | public String getCaption() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_caption == null)
jcasType.jcas.throwFeatMissing("caption", "ch.epfl.bbp.uima.types.DataTable");
return jcasType.ll_cas.ll_getStringValue(addr, ((DataTable_Type)jcasType).casFeatCode_caption);} | [
"public",
"String",
"getCaption",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_caption",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"capti... | getter for caption - gets
@generated
@return value of the feature | [
"getter",
"for",
"caption",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L153-L156 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setCaption | public void setCaption(String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_caption == null)
jcasType.jcas.throwFeatMissing("caption", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setStringValue(addr, ((DataTable_Type)jcasType).casFeatCode_caption, v);} | java | public void setCaption(String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_caption == null)
jcasType.jcas.throwFeatMissing("caption", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setStringValue(addr, ((DataTable_Type)jcasType).casFeatCode_caption, v);} | [
"public",
"void",
"setCaption",
"(",
"String",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_caption",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | setter for caption - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"caption",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L162-L165 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getHeadings | public StringArray getHeadings() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)... | java | public StringArray getHeadings() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)... | [
"public",
"StringArray",
"getHeadings",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_headings",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"... | getter for headings - gets
@generated
@return value of the feature | [
"getter",
"for",
"headings",
"-",
"gets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L175-L178 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setHeadings | public void setHeadings(StringArray v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_headings, jcasType.ll_ca... | java | public void setHeadings(StringArray v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_headings, jcasType.ll_ca... | [
"public",
"void",
"setHeadings",
"(",
"StringArray",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_headings",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMis... | setter for headings - sets
@generated
@param v value to set into the feature | [
"setter",
"for",
"headings",
"-",
"sets"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L184-L187 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getHeadings | public String getHeadings(int i) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode... | java | public String getHeadings(int i) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode... | [
"public",
"String",
"getHeadings",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_headings",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",... | indexed getter for headings - gets an indexed value -
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"headings",
"-",
"gets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L194-L198 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setHeadings | public void setHeadings(int i, String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).ca... | java | public void setHeadings(int i, String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_headings == null)
jcasType.jcas.throwFeatMissing("headings", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).ca... | [
"public",
"void",
"setHeadings",
"(",
"int",
"i",
",",
"String",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_headings",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".... | indexed setter for headings - sets an indexed value -
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"headings",
"-",
"sets",
"an",
"indexed",
"value",
"-"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L205-L209 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getBody | public StringArray getBody() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).ca... | java | public StringArray getBody() {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
return (StringArray)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).ca... | [
"public",
"StringArray",
"getBody",
"(",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_body",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
"\"body\"... | getter for body - gets the body of the table that contains data
@generated
@return value of the feature | [
"getter",
"for",
"body",
"-",
"gets",
"the",
"body",
"of",
"the",
"table",
"that",
"contains",
"data"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L219-L222 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setBody | public void setBody(StringArray v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_body, jcasType.ll_cas.ll_getFSRef(v)... | java | public void setBody(StringArray v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.ll_cas.ll_setRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_body, jcasType.ll_cas.ll_getFSRef(v)... | [
"public",
"void",
"setBody",
"(",
"StringArray",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_body",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
... | setter for body - sets the body of the table that contains data
@generated
@param v value to set into the feature | [
"setter",
"for",
"body",
"-",
"sets",
"the",
"body",
"of",
"the",
"table",
"that",
"contains",
"data"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L228-L231 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.getBody | public String getBody(int i) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_body), i);
... | java | public String getBody(int i) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_body), i);
... | [
"public",
"String",
"getBody",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_body",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"throwFeatMissing",
"(",
... | indexed getter for body - gets an indexed value - the body of the table that contains data
@generated
@param i index in the array to get
@return value of the element at index i | [
"indexed",
"getter",
"for",
"body",
"-",
"gets",
"an",
"indexed",
"value",
"-",
"the",
"body",
"of",
"the",
"table",
"that",
"contains",
"data"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L238-L242 | train |
BlueBrain/bluima | modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java | DataTable.setBody | public void setBody(int i, String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_bo... | java | public void setBody(int i, String v) {
if (DataTable_Type.featOkTst && ((DataTable_Type)jcasType).casFeat_body == null)
jcasType.jcas.throwFeatMissing("body", "ch.epfl.bbp.uima.types.DataTable");
jcasType.jcas.checkArrayBounds(jcasType.ll_cas.ll_getRefValue(addr, ((DataTable_Type)jcasType).casFeatCode_bo... | [
"public",
"void",
"setBody",
"(",
"int",
"i",
",",
"String",
"v",
")",
"{",
"if",
"(",
"DataTable_Type",
".",
"featOkTst",
"&&",
"(",
"(",
"DataTable_Type",
")",
"jcasType",
")",
".",
"casFeat_body",
"==",
"null",
")",
"jcasType",
".",
"jcas",
".",
"th... | indexed setter for body - sets an indexed value - the body of the table that contains data
@generated
@param i index in the array to set
@param v value to set into the array | [
"indexed",
"setter",
"for",
"body",
"-",
"sets",
"an",
"indexed",
"value",
"-",
"the",
"body",
"of",
"the",
"table",
"that",
"contains",
"data"
] | 793ea3f46761dce72094e057a56cddfa677156ae | https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_typesystem/src/main/java/ch/epfl/bbp/uima/types/DataTable.java#L249-L253 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.