Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1112)

Unified Diff: main/classes/core/src/newapi/impl/AffixPatternProvider.java

Issue 329960043: ticket:13177 NumberFormat2 from Shane's branch Base URL: svn+ssh://source.icu-project.org/repos/icu/trunk/icu4j/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: main/classes/core/src/newapi/impl/AffixPatternProvider.java
===================================================================
--- main/classes/core/src/newapi/impl/AffixPatternProvider.java (revision 0)
+++ main/classes/core/src/newapi/impl/AffixPatternProvider.java (working copy)
@@ -0,0 +1,26 @@
+// © 2017 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html#License
+package newapi.impl;
+
+public interface AffixPatternProvider {
+ public static final class Flags {
+ public static final int PLURAL_MASK = 0xff;
+ public static final int PREFIX = 0x100;
+ public static final int NEGATIVE_SUBPATTERN = 0x200;
+ public static final int PADDING = 0x400;
+ }
+
+ public char charAt(int flags, int i);
+
+ public int length(int flags);
+
+ public boolean hasCurrencySign();
+
+ public boolean positiveHasPlusSign();
+
+ public boolean hasNegativeSubpattern();
+
+ public boolean negativeHasMinusSign();
+
+ public boolean containsSymbolType(int type);
+}
Property changes on: main/classes/core/src/newapi/impl/AffixPatternProvider.java
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain;charset=utf-8
\ No newline at end of property

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b