abstractor 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/MIT-LICENSE +20 -0
- data/README.md +14 -0
- data/Rakefile +33 -0
- data/app/assets/images/abstractor/add.png +0 -0
- data/app/assets/images/abstractor/ajax-loader.gif +0 -0
- data/app/assets/images/abstractor/bar.gif +0 -0
- data/app/assets/images/abstractor/bti_logo.jpg +0 -0
- data/app/assets/images/abstractor/bullet_arrow_down.png +0 -0
- data/app/assets/images/abstractor/bullet_arrow_up.png +0 -0
- data/app/assets/images/abstractor/cog.png +0 -0
- data/app/assets/images/abstractor/delete.png +0 -0
- data/app/assets/images/abstractor/edit.png +0 -0
- data/app/assets/images/abstractor/excel.png +0 -0
- data/app/assets/images/abstractor/favicon.ico +0 -0
- data/app/assets/images/abstractor/greencheck.gif +0 -0
- data/app/assets/images/abstractor/loading.gif +0 -0
- data/app/assets/images/abstractor/nu_logo.jpg +0 -0
- data/app/assets/images/abstractor/nubic_logo.png +0 -0
- data/app/assets/images/abstractor/page.png +0 -0
- data/app/assets/images/abstractor/rails.png +0 -0
- data/app/assets/images/abstractor/robert_h_lurie.jpg +0 -0
- data/app/assets/images/abstractor/show.png +0 -0
- data/app/assets/images/abstractor/switch_minus.gif +0 -0
- data/app/assets/images/abstractor/switch_plus.gif +0 -0
- data/app/assets/javascripts/abstractor/abstractor.js +89 -0
- data/app/assets/javascripts/abstractor/application.js +21 -0
- data/app/assets/javascripts/abstractor/combobox.js +301 -0
- data/app/assets/javascripts/abstractor/jquery/jquery.form.js +1074 -0
- data/app/assets/javascripts/abstractor/nested_attributes.js +69 -0
- data/app/assets/stylesheets/abstractor/abstractor_abstractions.css +312 -0
- data/app/assets/stylesheets/abstractor/application.css +21 -0
- data/app/assets/stylesheets/abstractor/jquery.ui.override.css.scss +73 -0
- data/app/controllers/abstractor/abstractor_abstraction_groups_controller.rb +5 -0
- data/app/controllers/abstractor/abstractor_abstractions_controller.rb +5 -0
- data/app/controllers/abstractor/abstractor_suggestions_controller.rb +5 -0
- data/app/controllers/abstractor/application_controller.rb +2 -0
- data/app/helpers/abstractor/application_helper.rb +4 -0
- data/app/models/abstractor/abstractor_abstraction.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_group.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_group_member.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_predicate_variant.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_relation.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_source.rb +6 -0
- data/app/models/abstractor/abstractor_object_type.rb +6 -0
- data/app/models/abstractor/abstractor_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_object_value_variant.rb +6 -0
- data/app/models/abstractor/abstractor_relation_type.rb +6 -0
- data/app/models/abstractor/abstractor_rule_type.rb +6 -0
- data/app/models/abstractor/abstractor_subject.rb +6 -0
- data/app/models/abstractor/abstractor_subject_group.rb +6 -0
- data/app/models/abstractor/abstractor_subject_group_member.rb +6 -0
- data/app/models/abstractor/abstractor_subject_relation.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_source.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_status.rb +6 -0
- data/app/views/abstractor/abstractor_abstraction_groups/_form.html.haml +10 -0
- data/app/views/abstractor/abstractor_abstraction_groups/edit.html.haml +1 -0
- data/app/views/abstractor/abstractor_abstractions/_fields.html.haml +63 -0
- data/app/views/abstractor/abstractor_abstractions/_list.html.haml +45 -0
- data/app/views/abstractor/abstractor_abstractions/edit.html.haml +53 -0
- data/app/views/abstractor/abstractor_abstractions/show.html.haml +1 -0
- data/app/views/abstractor/shared/_error_messages.html.haml +5 -0
- data/config/cucumber.yml +8 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20131227205140_create_abstractor_object_types.rb +10 -0
- data/db/migrate/20131227205219_create_abstractor_object_values.rb +10 -0
- data/db/migrate/20131227205256_create_abstractor_object_value_variants.rb +11 -0
- data/db/migrate/20131227205320_create_abstractor_relation_types.rb +10 -0
- data/db/migrate/20131227205354_create_abstractor_rule_types.rb +11 -0
- data/db/migrate/20131227205432_create_abstractor_abstraction_schemas.rb +13 -0
- data/db/migrate/20131227205456_create_abstractor_abstraction_schema_object_values.rb +10 -0
- data/db/migrate/20131227205529_create_abstractor_abstraction_schema_predicate_variants.rb +11 -0
- data/db/migrate/20131227205610_create_abstractor_abstraction_schema_relations.rb +11 -0
- data/db/migrate/20131227205652_create_abstractor_subjects.rb +12 -0
- data/db/migrate/20131227205732_create_abstractor_subject_relations.rb +11 -0
- data/db/migrate/20131227205831_create_abstractor_abstraction_sources.rb +11 -0
- data/db/migrate/20131227210211_create_abstractor_subject_groups.rb +10 -0
- data/db/migrate/20131227210244_create_abstractor_subject_group_members.rb +11 -0
- data/db/migrate/20131227210350_create_abstractor_abstraction_groups.rb +12 -0
- data/db/migrate/20131227210353_create_abstractor_abstraction_group_members.rb +11 -0
- data/db/migrate/20131227211050_create_abstractor_suggestion_statuses.rb +10 -0
- data/db/migrate/20131227211303_create_abstractor_abstractions.rb +15 -0
- data/db/migrate/20131227213427_create_abstractor_suggestions.rb +14 -0
- data/db/migrate/20131228041944_create_abstractor_suggestion_object_values.rb +11 -0
- data/db/migrate/20131228041945_create_abstractor_suggestion_sources.rb +16 -0
- data/db/seeds.rb +0 -0
- data/lib/abstractor.rb +8 -0
- data/lib/abstractor/abstractable.rb +190 -0
- data/lib/abstractor/core_ext/string.rb +99 -0
- data/lib/abstractor/engine.rb +14 -0
- data/lib/abstractor/methods/controllers/abstractor_abstraction_groups_controller.rb +37 -0
- data/lib/abstractor/methods/controllers/abstractor_abstractions_controller.rb +42 -0
- data/lib/abstractor/methods/controllers/abstractor_suggestions_controller.rb +28 -0
- data/lib/abstractor/methods/models/abstractor_abstraction.rb +65 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_group.rb +37 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_group_member.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema.rb +27 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_object_value.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_predicate_variant.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_relation.rb +18 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_source.rb +29 -0
- data/lib/abstractor/methods/models/abstractor_object_type.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_object_value.rb +24 -0
- data/lib/abstractor/methods/models/abstractor_object_value_variant.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_relation_type.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_rule_type.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_subject.rb +258 -0
- data/lib/abstractor/methods/models/abstractor_subject_group.rb +19 -0
- data/lib/abstractor/methods/models/abstractor_subject_group_member.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_subject_relation.rb +18 -0
- data/lib/abstractor/methods/models/abstractor_suggestion.rb +88 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_object_value.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_source.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_status.rb +29 -0
- data/lib/abstractor/methods/models/soft_delete.rb +35 -0
- data/lib/abstractor/negation_detection.rb +43 -0
- data/lib/abstractor/parser.rb +76 -0
- data/lib/abstractor/setup.rb +24 -0
- data/lib/abstractor/user_interface.rb +40 -0
- data/lib/abstractor/utility.rb +8 -0
- data/lib/abstractor/version.rb +3 -0
- data/lib/generators/abstractor/install/install_generator.rb +118 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_abstraction_groups_controller.rb +16 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_abstractions_controller.rb +24 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_suggestions_controller.rb +12 -0
- data/lib/generators/abstractor/install/templates/dictionaries.yml +235 -0
- data/lib/generators/abstractor/install/templates/helpers/abstractions_helper.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_group.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_group_member.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_predicate_variant.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_relation.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_source.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_value_variant.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_relation_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_rule_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_group.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_group_member.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_relation.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_source.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_status.rb +9 -0
- data/lib/lingscope/build.xml +74 -0
- data/lib/lingscope/build/built-jar.properties +4 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/AbnerTokenizer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/AnnotationComparer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/Annotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineCueAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineScopeAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/CrfAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexCueAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexScopeAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/PosTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/negex/GenNegEx.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/negex/Sorter.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/AnnotatedFilesMerger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/AnnotationComparerDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/BaselineDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/CrfDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/CueAndPosFilesMerger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/ModelTrainer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/NegexDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/PosTaggerDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/SentencePosTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/SentenceTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/io/AnnotatedSentencesIO.class +0 -0
- data/lib/lingscope/build/classes/lingscope/structures/AnnotatedSentence.class +0 -0
- data/lib/lingscope/dist/README.TXT +32 -0
- data/lib/lingscope/dist/javadoc/allclasses-frame.html +80 -0
- data/lib/lingscope/dist/javadoc/allclasses-noframe.html +80 -0
- data/lib/lingscope/dist/javadoc/constant-values.html +199 -0
- data/lib/lingscope/dist/javadoc/deprecated-list.html +147 -0
- data/lib/lingscope/dist/javadoc/help-doc.html +224 -0
- data/lib/lingscope/dist/javadoc/index-files/index-1.html +188 -0
- data/lib/lingscope/dist/javadoc/index-files/index-10.html +149 -0
- data/lib/lingscope/dist/javadoc/index-files/index-11.html +158 -0
- data/lib/lingscope/dist/javadoc/index-files/index-12.html +157 -0
- data/lib/lingscope/dist/javadoc/index-files/index-13.html +177 -0
- data/lib/lingscope/dist/javadoc/index-files/index-14.html +155 -0
- data/lib/lingscope/dist/javadoc/index-files/index-15.html +152 -0
- data/lib/lingscope/dist/javadoc/index-files/index-16.html +146 -0
- data/lib/lingscope/dist/javadoc/index-files/index-2.html +158 -0
- data/lib/lingscope/dist/javadoc/index-files/index-3.html +165 -0
- data/lib/lingscope/dist/javadoc/index-files/index-4.html +146 -0
- data/lib/lingscope/dist/javadoc/index-files/index-5.html +219 -0
- data/lib/lingscope/dist/javadoc/index-files/index-6.html +149 -0
- data/lib/lingscope/dist/javadoc/index-files/index-7.html +155 -0
- data/lib/lingscope/dist/javadoc/index-files/index-8.html +185 -0
- data/lib/lingscope/dist/javadoc/index-files/index-9.html +164 -0
- data/lib/lingscope/dist/javadoc/index.html +74 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/AbnerTokenizer.html +280 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/AnnotationComparer.html +526 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/Annotator.html +401 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineAnnotator.html +375 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineCueAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineScopeAnnotator.html +340 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/CrfAnnotator.html +340 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexAnnotator.html +364 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexCueAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexScopeAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/PosTagger.html +268 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/AbnerTokenizer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/AnnotationComparer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/Annotator.html +299 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineAnnotator.html +189 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineCueAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineScopeAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/CrfAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexAnnotator.html +189 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexCueAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexScopeAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/PosTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/GenNegEx.html +369 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/Sorter.html +253 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/class-use/GenNegEx.html +181 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/class-use/Sorter.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-frame.html +35 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-summary.html +165 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-use.html +174 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-frame.html +53 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-summary.html +198 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-tree.html +160 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-use.html +202 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/AnnotatedFilesMerger.html +284 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/AnnotationComparerDriver.html +258 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/BaselineDriver.html +260 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/CrfDriver.html +262 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/CueAndPosFilesMerger.html +310 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/ModelTrainer.html +281 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/NegexDriver.html +262 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/PosTaggerDriver.html +289 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/SentencePosTagger.html +313 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/SentenceTagger.html +512 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/AnnotatedFilesMerger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/AnnotationComparerDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/BaselineDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/CrfDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/CueAndPosFilesMerger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/ModelTrainer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/NegexDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/PosTaggerDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/SentencePosTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/SentenceTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-frame.html +51 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-summary.html +195 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-use.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/AnnotatedSentencesIO.html +285 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/class-use/AnnotatedSentencesIO.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-frame.html +33 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-summary.html +158 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-use.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/AnnotatedSentence.html +425 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/class-use/AnnotatedSentence.html +423 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-frame.html +33 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-summary.html +158 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-use.html +209 -0
- data/lib/lingscope/dist/javadoc/overview-frame.html +51 -0
- data/lib/lingscope/dist/javadoc/overview-summary.html +168 -0
- data/lib/lingscope/dist/javadoc/overview-tree.html +159 -0
- data/lib/lingscope/dist/javadoc/package-list +5 -0
- data/lib/lingscope/dist/javadoc/resources/inherit.gif +0 -0
- data/lib/lingscope/dist/javadoc/stylesheet.css +29 -0
- data/lib/lingscope/dist/lib/abner.jar +0 -0
- data/lib/lingscope/dist/lib/commons-lang-2.4.jar +0 -0
- data/lib/lingscope/dist/lib/java_utils.jar +0 -0
- data/lib/lingscope/dist/lib/sptoolkit.jar +0 -0
- data/lib/lingscope/dist/lib/stanford-postagger.jar +0 -0
- data/lib/lingscope/dist/lingscope.jar +0 -0
- data/lib/lingscope/lingscope.zip +0 -0
- data/lib/lingscope/manifest.mf +3 -0
- data/lib/lingscope/nbproject/build-impl.xml +1338 -0
- data/lib/lingscope/nbproject/genfiles.properties +8 -0
- data/lib/lingscope/nbproject/private/config.properties +0 -0
- data/lib/lingscope/nbproject/private/private.properties +10 -0
- data/lib/lingscope/nbproject/private/private.xml +5 -0
- data/lib/lingscope/nbproject/project.properties +85 -0
- data/lib/lingscope/nbproject/project.xml +15 -0
- data/lib/lingscope/negation_models.zip +0 -0
- data/lib/lingscope/negation_models/baseline_cue_all_both.model +49 -0
- data/lib/lingscope/negation_models/baseline_cue_all_clinical.model +19 -0
- data/lib/lingscope/negation_models/crf_cue_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_cue_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_crf_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_crf_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_regex_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_regex_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_crf_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_crf_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_regex_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_regex_all_clinical.model +0 -0
- data/lib/lingscope/src/lingscope/algorithms/AbnerTokenizer.java +58 -0
- data/lib/lingscope/src/lingscope/algorithms/AnnotationComparer.java +207 -0
- data/lib/lingscope/src/lingscope/algorithms/Annotator.java +51 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineAnnotator.java +80 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineCueAnnotator.java +84 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineScopeAnnotator.java +101 -0
- data/lib/lingscope/src/lingscope/algorithms/CrfAnnotator.java +45 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexAnnotator.java +52 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexCueAnnotator.java +26 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexScopeAnnotator.java +26 -0
- data/lib/lingscope/src/lingscope/algorithms/PosTagger.java +54 -0
- data/lib/lingscope/src/lingscope/algorithms/negex/GenNegEx.java +530 -0
- data/lib/lingscope/src/lingscope/algorithms/negex/Sorter.java +36 -0
- data/lib/lingscope/src/lingscope/drivers/AnnotatedFilesMerger.java +61 -0
- data/lib/lingscope/src/lingscope/drivers/AnnotationComparerDriver.java +22 -0
- data/lib/lingscope/src/lingscope/drivers/BaselineDriver.java +45 -0
- data/lib/lingscope/src/lingscope/drivers/CrfDriver.java +31 -0
- data/lib/lingscope/src/lingscope/drivers/CueAndPosFilesMerger.java +86 -0
- data/lib/lingscope/src/lingscope/drivers/ModelTrainer.java +39 -0
- data/lib/lingscope/src/lingscope/drivers/NegexDriver.java +32 -0
- data/lib/lingscope/src/lingscope/drivers/PosTaggerDriver.java +62 -0
- data/lib/lingscope/src/lingscope/drivers/SentencePosTagger.java +89 -0
- data/lib/lingscope/src/lingscope/drivers/SentenceTagger.java +158 -0
- data/lib/lingscope/src/lingscope/io/AnnotatedSentencesIO.java +53 -0
- data/lib/lingscope/src/lingscope/structures/AnnotatedSentence.java +105 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Morphenglish.csv +1 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Morphenglish.txt +2273 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Topoenglish.csv +1 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Topoenglish.txt +1342 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/icd-o3 readme.txt +21 -0
- data/lib/setup/data/custom_site_synonyms.csv +1 -0
- data/lib/setup/data/diagnosis_categorizations.csv +1 -0
- data/lib/setup/data/high_level_primary_cns_diagnosis_categorizations.yml +597 -0
- data/lib/setup/data/icdo3_sites_with_laterality.txt +11 -0
- data/lib/setup/data/site_site_categories.txt +28 -0
- data/lib/tasks/abstractor_tasks.rake +22 -0
- data/lib/tasks/cucumber.rake +65 -0
- metadata +754 -0
@@ -0,0 +1,253 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<!--NewPage-->
|
3
|
+
<HTML>
|
4
|
+
<HEAD>
|
5
|
+
<!-- Generated by javadoc (build 1.6.0_65) on Tue Feb 18 19:45:41 CST 2014 -->
|
6
|
+
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
7
|
+
<TITLE>
|
8
|
+
Sorter
|
9
|
+
</TITLE>
|
10
|
+
|
11
|
+
<META NAME="date" CONTENT="2014-02-18">
|
12
|
+
|
13
|
+
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
14
|
+
|
15
|
+
<SCRIPT type="text/javascript">
|
16
|
+
function windowTitle()
|
17
|
+
{
|
18
|
+
if (location.href.indexOf('is-external=true') == -1) {
|
19
|
+
parent.document.title="Sorter";
|
20
|
+
}
|
21
|
+
}
|
22
|
+
</SCRIPT>
|
23
|
+
<NOSCRIPT>
|
24
|
+
</NOSCRIPT>
|
25
|
+
|
26
|
+
</HEAD>
|
27
|
+
|
28
|
+
<BODY BGCOLOR="white" onload="windowTitle();">
|
29
|
+
<HR>
|
30
|
+
|
31
|
+
|
32
|
+
<!-- ========= START OF TOP NAVBAR ======= -->
|
33
|
+
<A NAME="navbar_top"><!-- --></A>
|
34
|
+
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
35
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
36
|
+
<TR>
|
37
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
38
|
+
<A NAME="navbar_top_firstrow"><!-- --></A>
|
39
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
40
|
+
<TR ALIGN="center" VALIGN="top">
|
41
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
42
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
43
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
44
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Sorter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
45
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
46
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
47
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
48
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
49
|
+
</TR>
|
50
|
+
</TABLE>
|
51
|
+
</TD>
|
52
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
53
|
+
</EM>
|
54
|
+
</TD>
|
55
|
+
</TR>
|
56
|
+
|
57
|
+
<TR>
|
58
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
59
|
+
<A HREF="../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex"><B>PREV CLASS</B></A>
|
60
|
+
NEXT CLASS</FONT></TD>
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
62
|
+
<A HREF="../../../index.html?lingscope/algorithms/negex/Sorter.html" target="_top"><B>FRAMES</B></A>
|
63
|
+
<A HREF="Sorter.html" target="_top"><B>NO FRAMES</B></A>
|
64
|
+
<SCRIPT type="text/javascript">
|
65
|
+
<!--
|
66
|
+
if(window==top) {
|
67
|
+
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
68
|
+
}
|
69
|
+
//-->
|
70
|
+
</SCRIPT>
|
71
|
+
<NOSCRIPT>
|
72
|
+
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
73
|
+
</NOSCRIPT>
|
74
|
+
|
75
|
+
|
76
|
+
</FONT></TD>
|
77
|
+
</TR>
|
78
|
+
<TR>
|
79
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
80
|
+
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
81
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
82
|
+
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
83
|
+
</TR>
|
84
|
+
</TABLE>
|
85
|
+
<A NAME="skip-navbar_top"></A>
|
86
|
+
<!-- ========= END OF TOP NAVBAR ========= -->
|
87
|
+
|
88
|
+
<HR>
|
89
|
+
<!-- ======== START OF CLASS DATA ======== -->
|
90
|
+
<H2>
|
91
|
+
<FONT SIZE="-1">
|
92
|
+
lingscope.algorithms.negex</FONT>
|
93
|
+
<BR>
|
94
|
+
Class Sorter</H2>
|
95
|
+
<PRE>
|
96
|
+
java.lang.Object
|
97
|
+
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>lingscope.algorithms.negex.Sorter</B>
|
98
|
+
</PRE>
|
99
|
+
<HR>
|
100
|
+
<DL>
|
101
|
+
<DT><PRE>public class <B>Sorter</B><DT>extends java.lang.Object</DL>
|
102
|
+
</PRE>
|
103
|
+
|
104
|
+
<P>
|
105
|
+
<HR>
|
106
|
+
|
107
|
+
<P>
|
108
|
+
|
109
|
+
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
110
|
+
|
111
|
+
<A NAME="constructor_summary"><!-- --></A>
|
112
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
113
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
114
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
115
|
+
<B>Constructor Summary</B></FONT></TH>
|
116
|
+
</TR>
|
117
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
118
|
+
<TD><CODE><B><A HREF="../../../lingscope/algorithms/negex/Sorter.html#Sorter()">Sorter</A></B>()</CODE>
|
119
|
+
|
120
|
+
<BR>
|
121
|
+
</TD>
|
122
|
+
</TR>
|
123
|
+
</TABLE>
|
124
|
+
|
125
|
+
<!-- ========== METHOD SUMMARY =========== -->
|
126
|
+
|
127
|
+
<A NAME="method_summary"><!-- --></A>
|
128
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
129
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
130
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
131
|
+
<B>Method Summary</B></FONT></TH>
|
132
|
+
</TR>
|
133
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
134
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
135
|
+
<CODE> java.util.List<java.lang.String></CODE></FONT></TD>
|
136
|
+
<TD><CODE><B><A HREF="../../../lingscope/algorithms/negex/Sorter.html#sortRules(java.util.List)">sortRules</A></B>(java.util.List<java.lang.String> unsortedRules)</CODE>
|
137
|
+
|
138
|
+
<BR>
|
139
|
+
</TD>
|
140
|
+
</TR>
|
141
|
+
</TABLE>
|
142
|
+
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
143
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
144
|
+
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
145
|
+
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
146
|
+
</TR>
|
147
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
148
|
+
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
149
|
+
</TR>
|
150
|
+
</TABLE>
|
151
|
+
|
152
|
+
<P>
|
153
|
+
|
154
|
+
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
155
|
+
|
156
|
+
<A NAME="constructor_detail"><!-- --></A>
|
157
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
158
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
159
|
+
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
160
|
+
<B>Constructor Detail</B></FONT></TH>
|
161
|
+
</TR>
|
162
|
+
</TABLE>
|
163
|
+
|
164
|
+
<A NAME="Sorter()"><!-- --></A><H3>
|
165
|
+
Sorter</H3>
|
166
|
+
<PRE>
|
167
|
+
public <B>Sorter</B>()</PRE>
|
168
|
+
<DL>
|
169
|
+
</DL>
|
170
|
+
|
171
|
+
<!-- ============ METHOD DETAIL ========== -->
|
172
|
+
|
173
|
+
<A NAME="method_detail"><!-- --></A>
|
174
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
175
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
176
|
+
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
177
|
+
<B>Method Detail</B></FONT></TH>
|
178
|
+
</TR>
|
179
|
+
</TABLE>
|
180
|
+
|
181
|
+
<A NAME="sortRules(java.util.List)"><!-- --></A><H3>
|
182
|
+
sortRules</H3>
|
183
|
+
<PRE>
|
184
|
+
public java.util.List<java.lang.String> <B>sortRules</B>(java.util.List<java.lang.String> unsortedRules)</PRE>
|
185
|
+
<DL>
|
186
|
+
<DD><DL>
|
187
|
+
</DL>
|
188
|
+
</DD>
|
189
|
+
</DL>
|
190
|
+
<!-- ========= END OF CLASS DATA ========= -->
|
191
|
+
<HR>
|
192
|
+
|
193
|
+
|
194
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
195
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
196
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
197
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
198
|
+
<TR>
|
199
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
200
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
201
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
202
|
+
<TR ALIGN="center" VALIGN="top">
|
203
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
204
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
205
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
206
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Sorter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
207
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
208
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
209
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
210
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
211
|
+
</TR>
|
212
|
+
</TABLE>
|
213
|
+
</TD>
|
214
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
215
|
+
</EM>
|
216
|
+
</TD>
|
217
|
+
</TR>
|
218
|
+
|
219
|
+
<TR>
|
220
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
221
|
+
<A HREF="../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex"><B>PREV CLASS</B></A>
|
222
|
+
NEXT CLASS</FONT></TD>
|
223
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
224
|
+
<A HREF="../../../index.html?lingscope/algorithms/negex/Sorter.html" target="_top"><B>FRAMES</B></A>
|
225
|
+
<A HREF="Sorter.html" target="_top"><B>NO FRAMES</B></A>
|
226
|
+
<SCRIPT type="text/javascript">
|
227
|
+
<!--
|
228
|
+
if(window==top) {
|
229
|
+
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
230
|
+
}
|
231
|
+
//-->
|
232
|
+
</SCRIPT>
|
233
|
+
<NOSCRIPT>
|
234
|
+
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
235
|
+
</NOSCRIPT>
|
236
|
+
|
237
|
+
|
238
|
+
</FONT></TD>
|
239
|
+
</TR>
|
240
|
+
<TR>
|
241
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
242
|
+
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
243
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
244
|
+
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
245
|
+
</TR>
|
246
|
+
</TABLE>
|
247
|
+
<A NAME="skip-navbar_bottom"></A>
|
248
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
249
|
+
|
250
|
+
<HR>
|
251
|
+
|
252
|
+
</BODY>
|
253
|
+
</HTML>
|
@@ -0,0 +1,181 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<!--NewPage-->
|
3
|
+
<HTML>
|
4
|
+
<HEAD>
|
5
|
+
<!-- Generated by javadoc (build 1.6.0_65) on Tue Feb 18 19:45:41 CST 2014 -->
|
6
|
+
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
7
|
+
<TITLE>
|
8
|
+
Uses of Class lingscope.algorithms.negex.GenNegEx
|
9
|
+
</TITLE>
|
10
|
+
|
11
|
+
<META NAME="date" CONTENT="2014-02-18">
|
12
|
+
|
13
|
+
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
14
|
+
|
15
|
+
<SCRIPT type="text/javascript">
|
16
|
+
function windowTitle()
|
17
|
+
{
|
18
|
+
if (location.href.indexOf('is-external=true') == -1) {
|
19
|
+
parent.document.title="Uses of Class lingscope.algorithms.negex.GenNegEx";
|
20
|
+
}
|
21
|
+
}
|
22
|
+
</SCRIPT>
|
23
|
+
<NOSCRIPT>
|
24
|
+
</NOSCRIPT>
|
25
|
+
|
26
|
+
</HEAD>
|
27
|
+
|
28
|
+
<BODY BGCOLOR="white" onload="windowTitle();">
|
29
|
+
<HR>
|
30
|
+
|
31
|
+
|
32
|
+
<!-- ========= START OF TOP NAVBAR ======= -->
|
33
|
+
<A NAME="navbar_top"><!-- --></A>
|
34
|
+
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
35
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
36
|
+
<TR>
|
37
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
38
|
+
<A NAME="navbar_top_firstrow"><!-- --></A>
|
39
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
40
|
+
<TR ALIGN="center" VALIGN="top">
|
41
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
42
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
43
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
44
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
45
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
46
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
47
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
48
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
49
|
+
</TR>
|
50
|
+
</TABLE>
|
51
|
+
</TD>
|
52
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
53
|
+
</EM>
|
54
|
+
</TD>
|
55
|
+
</TR>
|
56
|
+
|
57
|
+
<TR>
|
58
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
59
|
+
PREV
|
60
|
+
NEXT</FONT></TD>
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
62
|
+
<A HREF="../../../../index.html?lingscope/algorithms/negex//class-useGenNegEx.html" target="_top"><B>FRAMES</B></A>
|
63
|
+
<A HREF="GenNegEx.html" target="_top"><B>NO FRAMES</B></A>
|
64
|
+
<SCRIPT type="text/javascript">
|
65
|
+
<!--
|
66
|
+
if(window==top) {
|
67
|
+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
68
|
+
}
|
69
|
+
//-->
|
70
|
+
</SCRIPT>
|
71
|
+
<NOSCRIPT>
|
72
|
+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
73
|
+
</NOSCRIPT>
|
74
|
+
|
75
|
+
|
76
|
+
</FONT></TD>
|
77
|
+
</TR>
|
78
|
+
</TABLE>
|
79
|
+
<A NAME="skip-navbar_top"></A>
|
80
|
+
<!-- ========= END OF TOP NAVBAR ========= -->
|
81
|
+
|
82
|
+
<HR>
|
83
|
+
<CENTER>
|
84
|
+
<H2>
|
85
|
+
<B>Uses of Class<br>lingscope.algorithms.negex.GenNegEx</B></H2>
|
86
|
+
</CENTER>
|
87
|
+
|
88
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
89
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
90
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
91
|
+
Packages that use <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex">GenNegEx</A></FONT></TH>
|
92
|
+
</TR>
|
93
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
94
|
+
<TD><A HREF="#lingscope.algorithms"><B>lingscope.algorithms</B></A></TD>
|
95
|
+
<TD> </TD>
|
96
|
+
</TR>
|
97
|
+
</TABLE>
|
98
|
+
|
99
|
+
<P>
|
100
|
+
<A NAME="lingscope.algorithms"><!-- --></A>
|
101
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
102
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
103
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
104
|
+
Uses of <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex">GenNegEx</A> in <A HREF="../../../../lingscope/algorithms/package-summary.html">lingscope.algorithms</A></FONT></TH>
|
105
|
+
</TR>
|
106
|
+
</TABLE>
|
107
|
+
|
108
|
+
<P>
|
109
|
+
|
110
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
111
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
112
|
+
<TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../lingscope/algorithms/package-summary.html">lingscope.algorithms</A> declared as <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex">GenNegEx</A></FONT></TH>
|
113
|
+
</TR>
|
114
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
115
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
116
|
+
<CODE>protected <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex">GenNegEx</A></CODE></FONT></TD>
|
117
|
+
<TD><CODE><B>NegexAnnotator.</B><B><A HREF="../../../../lingscope/algorithms/NegexAnnotator.html#negex">negex</A></B></CODE>
|
118
|
+
|
119
|
+
<BR>
|
120
|
+
</TD>
|
121
|
+
</TR>
|
122
|
+
</TABLE>
|
123
|
+
|
124
|
+
<P>
|
125
|
+
<HR>
|
126
|
+
|
127
|
+
|
128
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
129
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
130
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
131
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
132
|
+
<TR>
|
133
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
134
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
135
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
136
|
+
<TR ALIGN="center" VALIGN="top">
|
137
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
138
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
139
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lingscope/algorithms/negex/GenNegEx.html" title="class in lingscope.algorithms.negex"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
140
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
141
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
142
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
143
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
144
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
145
|
+
</TR>
|
146
|
+
</TABLE>
|
147
|
+
</TD>
|
148
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
149
|
+
</EM>
|
150
|
+
</TD>
|
151
|
+
</TR>
|
152
|
+
|
153
|
+
<TR>
|
154
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
155
|
+
PREV
|
156
|
+
NEXT</FONT></TD>
|
157
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
158
|
+
<A HREF="../../../../index.html?lingscope/algorithms/negex//class-useGenNegEx.html" target="_top"><B>FRAMES</B></A>
|
159
|
+
<A HREF="GenNegEx.html" target="_top"><B>NO FRAMES</B></A>
|
160
|
+
<SCRIPT type="text/javascript">
|
161
|
+
<!--
|
162
|
+
if(window==top) {
|
163
|
+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
164
|
+
}
|
165
|
+
//-->
|
166
|
+
</SCRIPT>
|
167
|
+
<NOSCRIPT>
|
168
|
+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
169
|
+
</NOSCRIPT>
|
170
|
+
|
171
|
+
|
172
|
+
</FONT></TD>
|
173
|
+
</TR>
|
174
|
+
</TABLE>
|
175
|
+
<A NAME="skip-navbar_bottom"></A>
|
176
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
177
|
+
|
178
|
+
<HR>
|
179
|
+
|
180
|
+
</BODY>
|
181
|
+
</HTML>
|
@@ -0,0 +1,145 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<!--NewPage-->
|
3
|
+
<HTML>
|
4
|
+
<HEAD>
|
5
|
+
<!-- Generated by javadoc (build 1.6.0_65) on Tue Feb 18 19:45:41 CST 2014 -->
|
6
|
+
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
7
|
+
<TITLE>
|
8
|
+
Uses of Class lingscope.algorithms.negex.Sorter
|
9
|
+
</TITLE>
|
10
|
+
|
11
|
+
<META NAME="date" CONTENT="2014-02-18">
|
12
|
+
|
13
|
+
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
14
|
+
|
15
|
+
<SCRIPT type="text/javascript">
|
16
|
+
function windowTitle()
|
17
|
+
{
|
18
|
+
if (location.href.indexOf('is-external=true') == -1) {
|
19
|
+
parent.document.title="Uses of Class lingscope.algorithms.negex.Sorter";
|
20
|
+
}
|
21
|
+
}
|
22
|
+
</SCRIPT>
|
23
|
+
<NOSCRIPT>
|
24
|
+
</NOSCRIPT>
|
25
|
+
|
26
|
+
</HEAD>
|
27
|
+
|
28
|
+
<BODY BGCOLOR="white" onload="windowTitle();">
|
29
|
+
<HR>
|
30
|
+
|
31
|
+
|
32
|
+
<!-- ========= START OF TOP NAVBAR ======= -->
|
33
|
+
<A NAME="navbar_top"><!-- --></A>
|
34
|
+
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
35
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
36
|
+
<TR>
|
37
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
38
|
+
<A NAME="navbar_top_firstrow"><!-- --></A>
|
39
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
40
|
+
<TR ALIGN="center" VALIGN="top">
|
41
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
42
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
43
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lingscope/algorithms/negex/Sorter.html" title="class in lingscope.algorithms.negex"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
44
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
45
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
46
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
47
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
48
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
49
|
+
</TR>
|
50
|
+
</TABLE>
|
51
|
+
</TD>
|
52
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
53
|
+
</EM>
|
54
|
+
</TD>
|
55
|
+
</TR>
|
56
|
+
|
57
|
+
<TR>
|
58
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
59
|
+
PREV
|
60
|
+
NEXT</FONT></TD>
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
62
|
+
<A HREF="../../../../index.html?lingscope/algorithms/negex//class-useSorter.html" target="_top"><B>FRAMES</B></A>
|
63
|
+
<A HREF="Sorter.html" target="_top"><B>NO FRAMES</B></A>
|
64
|
+
<SCRIPT type="text/javascript">
|
65
|
+
<!--
|
66
|
+
if(window==top) {
|
67
|
+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
68
|
+
}
|
69
|
+
//-->
|
70
|
+
</SCRIPT>
|
71
|
+
<NOSCRIPT>
|
72
|
+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
73
|
+
</NOSCRIPT>
|
74
|
+
|
75
|
+
|
76
|
+
</FONT></TD>
|
77
|
+
</TR>
|
78
|
+
</TABLE>
|
79
|
+
<A NAME="skip-navbar_top"></A>
|
80
|
+
<!-- ========= END OF TOP NAVBAR ========= -->
|
81
|
+
|
82
|
+
<HR>
|
83
|
+
<CENTER>
|
84
|
+
<H2>
|
85
|
+
<B>Uses of Class<br>lingscope.algorithms.negex.Sorter</B></H2>
|
86
|
+
</CENTER>
|
87
|
+
No usage of lingscope.algorithms.negex.Sorter
|
88
|
+
<P>
|
89
|
+
<HR>
|
90
|
+
|
91
|
+
|
92
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
93
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
94
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
95
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
96
|
+
<TR>
|
97
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
98
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
99
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
100
|
+
<TR ALIGN="center" VALIGN="top">
|
101
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
102
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
103
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lingscope/algorithms/negex/Sorter.html" title="class in lingscope.algorithms.negex"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
104
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
105
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
106
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
107
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
108
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
109
|
+
</TR>
|
110
|
+
</TABLE>
|
111
|
+
</TD>
|
112
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
113
|
+
</EM>
|
114
|
+
</TD>
|
115
|
+
</TR>
|
116
|
+
|
117
|
+
<TR>
|
118
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
119
|
+
PREV
|
120
|
+
NEXT</FONT></TD>
|
121
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
122
|
+
<A HREF="../../../../index.html?lingscope/algorithms/negex//class-useSorter.html" target="_top"><B>FRAMES</B></A>
|
123
|
+
<A HREF="Sorter.html" target="_top"><B>NO FRAMES</B></A>
|
124
|
+
<SCRIPT type="text/javascript">
|
125
|
+
<!--
|
126
|
+
if(window==top) {
|
127
|
+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
128
|
+
}
|
129
|
+
//-->
|
130
|
+
</SCRIPT>
|
131
|
+
<NOSCRIPT>
|
132
|
+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
133
|
+
</NOSCRIPT>
|
134
|
+
|
135
|
+
|
136
|
+
</FONT></TD>
|
137
|
+
</TR>
|
138
|
+
</TABLE>
|
139
|
+
<A NAME="skip-navbar_bottom"></A>
|
140
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
141
|
+
|
142
|
+
<HR>
|
143
|
+
|
144
|
+
</BODY>
|
145
|
+
</HTML>
|