From 49fb9100a25677c2541ef7738fbdf0af41febf5e Mon Sep 17 00:00:00 2001 From: Diomidis Spinellis Date: Sun, 27 May 2012 14:58:12 +0300 Subject: [PATCH] Fix javadoc parameter documentation --- src/org/umlgraph/doclet/ContextMatcher.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/org/umlgraph/doclet/ContextMatcher.java b/src/org/umlgraph/doclet/ContextMatcher.java index 7cf647b..a2b397f 100644 --- a/src/org/umlgraph/doclet/ContextMatcher.java +++ b/src/org/umlgraph/doclet/ContextMatcher.java @@ -48,6 +48,7 @@ public class ContextMatcher implements ClassMatcher { Pattern pattern; List matched; Set visited = new HashSet(); + /** The options will be used to decide on inference */ Options opt; RootDoc root; boolean keepParentHide; @@ -57,14 +58,9 @@ public class ContextMatcher implements ClassMatcher { * @param root The root doc returned by JavaDoc * @param pattern The pattern that will match the "center" of this * context - * @param opt The options will be used to decide on inference * @param keepParentHide If true, parent option hide patterns will be * preserved, so that classes hidden by the options won't * be shown in the context - * @param fullContext If true, all the classes related to the context - * center will be included, otherwise it will match only - * the classes referred with an outgoing relation from - * the context center * @throws IOException */ public ContextMatcher(RootDoc root, Pattern pattern, Options options, boolean keepParentHide) throws IOException {