[aXSL-commit] SF.net SVN: axsl:[3338] trunk/axsl/axsl-orthography/s rc/main/java/org/axsl/orthograp
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2026-07-24 19:34:29
|
Revision: 3338
http://sourceforge.net/p/axsl/code/3338
Author: victormote
Date: 2026-07-24 19:34:27 +0000 (Fri, 24 Jul 2026)
Log Message:
-----------
Add POS qualifier for proper noun.
Modified Paths:
--------------
trunk/axsl/axsl-orthography/src/main/java/org/axsl/orthography/PosQualifier.java
Modified: trunk/axsl/axsl-orthography/src/main/java/org/axsl/orthography/PosQualifier.java
===================================================================
--- trunk/axsl/axsl-orthography/src/main/java/org/axsl/orthography/PosQualifier.java 2026-07-24 18:59:42 UTC (rev 3337)
+++ trunk/axsl/axsl-orthography/src/main/java/org/axsl/orthography/PosQualifier.java 2026-07-24 19:34:27 UTC (rev 3338)
@@ -104,8 +104,11 @@
EXTENSIBLE((byte) 18, Collections.singletonList(PartOfSpeech.ADJECTIVE)),
/** Indicates whether the word is the possessive form of a noun. */
- POSSESSIVE((byte) 19, Collections.singletonList(PartOfSpeech.ADJECTIVE));
+ POSSESSIVE((byte) 19, Collections.singletonList(PartOfSpeech.ADJECTIVE)),
+ /** Indicates that a noun is a always a proper noun. */
+ PROPER((byte) 20, Collections.singletonList(PartOfSpeech.NOUN));
+
/** The items in this enumeration as an unmodifiable List, to avoid copying the underlying array each time its
* content is needed. */
public static final List<PosQualifier> AS_LIST =
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|