You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by tm...@apache.org on 2014/10/14 00:26:59 UTC

svn commit: r1631589 - /ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java

Author: tmill
Date: Mon Oct 13 22:26:59 2014
New Revision: 1631589

URL: http://svn.apache.org/r1631589
Log:
CTAKES-82: Fixed config parameters to have non-mandatory arguments.

Modified:
    ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java

Modified: ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java?rev=1631589&r1=1631588&r2=1631589&view=diff
==============================================================================
--- ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java (original)
+++ ctakes/trunk/ctakes-temporal/src/main/java/org/apache/ctakes/temporal/eval/EvaluationOfEventTimeRelations.java Mon Oct 13 22:26:59 2014
@@ -530,7 +530,7 @@ EvaluationOfTemporalRelations_ImplBase{
 
 	public static class RemoveEventEventRelations extends JCasAnnotator_ImplBase {
 		public static final String PARAM_RELATION_VIEW = "RelationView";
-		@ConfigurationParameter(name = PARAM_RELATION_VIEW)
+		@ConfigurationParameter(name = PARAM_RELATION_VIEW,mandatory=false)
 		private String relationViewName = CAS.NAME_DEFAULT_SOFA;
 
 		@Override
@@ -580,12 +580,12 @@ EvaluationOfTemporalRelations_ImplBase{
 
 		public static final String PARAM_SENTENCE_VIEW = "SentenceView";
 
-		@ConfigurationParameter(name = PARAM_SENTENCE_VIEW)
+		@ConfigurationParameter(name = PARAM_SENTENCE_VIEW,mandatory=false)
 		private String sentenceViewName = CAS.NAME_DEFAULT_SOFA;
 
 		public static final String PARAM_RELATION_VIEW = "RelationView";
 
-		@ConfigurationParameter(name = PARAM_RELATION_VIEW)
+		@ConfigurationParameter(name = PARAM_RELATION_VIEW,mandatory=false)
 		private String relationViewName = CAS.NAME_DEFAULT_SOFA;
 
 		@Override