Skip to content

Commit 53c0d4b

Browse files
committed
Javadoc lists?
1 parent b3c47a0 commit 53c0d4b

File tree

1 file changed

+36
-30
lines changed

1 file changed

+36
-30
lines changed

src/edu/stanford/nlp/trees/UniversalEnglishGrammaticalStructure.java

Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -46,56 +46,62 @@ public class UniversalEnglishGrammaticalStructure extends GrammaticalStructure
4646

4747
private static final boolean USE_NAME = System.getProperty("UDUseNameRelation") != null;
4848

49-
/*
49+
/**
5050
* Options for "Enhanced" representation:
5151
*
52-
* - Process multi-word prepositions: No
53-
* - Add prepositions to relation labels: Yes
54-
* - Add prepositions only to nmod relations: No
55-
* - Add coordinating conjunctions to relation labels: Yes
56-
* - Propagate dependents: Yes
57-
* - Add "referent" relations: Yes
58-
* - Add copy nodes for conjoined Ps and PPs: No
59-
* - Turn quantificational modifiers into flat MWEs: No
60-
* - Add relations between controlling subject and controlled verbs: Yes
52+
* <ul>
53+
* <li> Process multi-word prepositions: No
54+
* <li> Add prepositions to relation labels: Yes
55+
* <li> Add prepositions only to nmod relations: No
56+
* <li> Add coordinating conjunctions to relation labels: Yes
57+
* <li> Propagate dependents: Yes
58+
* <li> Add "referent" relations: Yes
59+
* <li> Add copy nodes for conjoined Ps and PPs: No
60+
* <li> Turn quantificational modifiers into flat MWEs: No
61+
* <li> Add relations between controlling subject and controlled verbs: Yes
62+
* </ul>
6163
*
6264
*/
6365
public static final EnhancementOptions ENHANCED_OPTIONS = new EnhancementOptions(false, true, false, true, true, true,
6466
false, false, true);
6567

66-
/*
68+
/**
6769
* Options for "Enhanced++" representation:
6870
*
69-
* - Process multi-word prepositions: Yes
70-
* - Add prepositions to relation labels: Yes
71-
* - Add prepositions only to nmod relations: No
72-
* - Add coordinating conjunctions to relation labels: Yes
73-
* - Propagate dependents: Yes
74-
* - Add "referent" relations: Yes
75-
* - Add copy nodes for conjoined Ps and PPs: Yes
76-
* - Turn quantificational modifiers into flat MWEs: Yes
77-
* - Add relations between controlling subject and controlled verbs: Yes
71+
* <ul>
72+
* <li> Process multi-word prepositions: Yes
73+
* <li> Add prepositions to relation labels: Yes
74+
* <li> Add prepositions only to nmod relations: No
75+
* <li> Add coordinating conjunctions to relation labels: Yes
76+
* <li> Propagate dependents: Yes
77+
* <li> Add "referent" relations: Yes
78+
* <li> Add copy nodes for conjoined Ps and PPs: Yes
79+
* <li> Turn quantificational modifiers into flat MWEs: Yes
80+
* <li> Add relations between controlling subject and controlled verbs: Yes
81+
* </ul>
7882
*
7983
*/
8084
public static final EnhancementOptions ENHANCED_PLUS_PLUS_OPTIONS = new EnhancementOptions(true, true, false, true, true, true,
8185
true, true, true);
8286

8387

8488

85-
/*
89+
/**
8690
* Options for "Collapsed" representation.
8791
* This representation is similar to the "collapsed" SD representation
8892
* without any "Extra" relations.
8993
*
90-
* - Process multi-word prepositions: Yes
91-
* - Add prepositions to relation labels: Yes
92-
* - Add prepositions only to nmod relations: Yes
93-
* - Add coordinating conjunctions to relation labels: Yes
94-
* - Propagate dependents: No
95-
* - Add "referent" relations: No
96-
* - Add copy nodes for conjoined Ps and PPs: Yes
97-
* - Turn quantificational modifiers into flat MWEs: No
98-
* - Add relations between controlling subject and controlled verbs: No
94+
* <ul>
95+
* <li> Process multi-word prepositions: Yes
96+
* <li> Add prepositions to relation labels: Yes
97+
* <li> Add prepositions only to nmod relations: Yes
98+
* <li> Add coordinating conjunctions to relation labels: Yes
99+
* <li> Propagate dependents: No
100+
* <li> Add "referent" relations: No
101+
* <li> Add copy nodes for conjoined Ps and PPs: Yes
102+
* <li> Turn quantificational modifiers into flat MWEs: No
103+
* <li> Add relations between controlling subject and controlled verbs: No
104+
* </ul>
99105
*
100106
*/
101107
@Deprecated

0 commit comments

Comments
 (0)