01 /*
02 * Adjective.java
03 *
04 * Copyright (c) 1995-2010, The University of Sheffield. See the file
05 * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt
06 *
07 * This file is part of GATE (see http://gate.ac.uk/), and is free
08 * software, licenced under the GNU Library General Public License,
09 * Version 2, June 1991 (in the distribution as file licence.html,
10 * and also available at http://gate.ac.uk/gate/licence.html).
11 *
12 * Marin Dimitrov, 16/May/2002
13 *
14 * $Id: Adjective.java 12006 2009-12-01 17:24:28Z thomas_heitz $
15 */
16
17 package gate.wordnet;
18
19
20
21 /** Represents WordNet adj.
22 */
23 public interface Adjective extends WordSense {
24
25 /** adjective - prenominal (attributive) position */
26 public static final int ADJ_POS_ATTRIBUTIVE = 10001;
27
28 /** adjective - immediately postnominal position */
29 public static final int ADJ_POS_IMMEDIATE_POSTNOMINAL = 10002;
30
31 /** adjective - predicate position */
32 public static final int ADJ_POS_PREDICATIVE = 10003;
33
34 /** adjective - position unknown */
35 public static final int ADJ_POS_NONE = 10004;
36
37 /** returns the syntactic position of the adjective in relation to noun that it modifies */
38 public int getAdjectivePosition();
39
40 }
|