Methods Summary |
---|
private java.lang.String | alphaValue(int value, int min, int max)
if (value <= 0) {
return "" + value;
}
int range = max - min + 1;
char last = (char)(((value-1) % range) + min);
if (value > range) {
return alphaValue((value-1) / range, min, max) + last;
}
else {
return "" + last;
}
|
protected java.lang.String | formatNumbers(int value)Format a single value according to the format parameters.
return formatNumbers(new int[] { value });
|
protected java.lang.String | formatNumbers(int[] values)Format a sequence of values according to the format paramaters
set by calling setFormatting().
final int nValues = values.length;
final int length = _format.length();
boolean isEmpty = true;
for (int i = 0; i < nValues; i++)
if (values[i] != Integer.MIN_VALUE)
isEmpty = false;
if (isEmpty) return("");
// Format the output string using the values array and the fmt. tokens
boolean isFirst = true;
int t = 0, n = 0, s = 1;
_tempBuffer.setLength(0);
final StringBuffer buffer = _tempBuffer;
// Append separation token before first digit/letter/numeral
if (_separFirst) buffer.append((String)_separToks.elementAt(0));
// Append next digit/letter/numeral and separation token
while (n < nValues) {
final int value = values[n];
if (value != Integer.MIN_VALUE) {
if (!isFirst) buffer.append((String) _separToks.elementAt(s++));
formatValue(value, (String)_formatToks.elementAt(t++), buffer);
if (t == _nFormats) t--;
if (s >= _nSepars) s--;
isFirst = false;
}
n++;
}
// Append separation token after last digit/letter/numeral
if (_separLast) buffer.append((String)_separToks.lastElement());
return buffer.toString();
|
private void | formatValue(int value, java.lang.String format, java.lang.StringBuffer buffer)Format a single value based on the appropriate formatting token.
This method is based on saxon (Michael Kay) and only implements
lang="en".
char c = format.charAt(0);
if (Character.isDigit(c)) {
char zero = (char)(c - Character.getNumericValue(c));
StringBuffer temp = buffer;
if (_groupSize > 0) {
temp = new StringBuffer();
}
String s = "";
int n = value;
while (n > 0) {
s = (char) ((int) zero + (n % 10)) + s;
n = n / 10;
}
for (int i = 0; i < format.length() - s.length(); i++) {
temp.append(zero);
}
temp.append(s);
if (_groupSize > 0) {
for (int i = 0; i < temp.length(); i++) {
if (i != 0 && ((temp.length() - i) % _groupSize) == 0) {
buffer.append(_groupSep);
}
buffer.append(temp.charAt(i));
}
}
}
else if (c == 'i" && !_letterValue.equals("alphabetic")) {
buffer.append(romanValue(value));
}
else if (c == 'I" && !_letterValue.equals("alphabetic")) {
buffer.append(romanValue(value).toUpperCase());
}
else {
int min = (int) c;
int max = (int) c;
// Special case for Greek alphabet
if (c >= 0x3b1 && c <= 0x3c9) {
max = 0x3c9; // omega
}
else {
// General case: search for end of group
while (Character.isLetterOrDigit((char) (max + 1))) {
max++;
}
}
buffer.append(alphaValue(value, min, max));
}
|
public abstract java.lang.String | getCounter()Returns the position of node according to the level and
the from and count patterns.
|
public java.lang.String | getCounter(java.lang.String format, java.lang.String lang, java.lang.String letterValue, java.lang.String groupSep, java.lang.String groupSize)Returns the position of node according to the level and
the from and count patterns. This position is converted into a
string based on the arguments passed.
setFormatting(format, lang, letterValue, groupSep, groupSize);
return getCounter();
|
public boolean | matchesCount(int node)Returns true if node matches the count pattern. By
default a node matches the count patterns if it is of the
same type as the starting node.
return _nodeType == _document.getExpandedTypeID(node);
|
public boolean | matchesFrom(int node)Returns true if node matches the from pattern. By default,
no node matches the from pattern.
return false;
|
private java.lang.String | romanValue(int n)
if (n <= 0 || n > 4000) {
return "" + n;
}
return
Thousands[n / 1000] +
Hundreds[(n / 100) % 10] +
Tens[(n/10) % 10] +
Ones[n % 10];
|
public com.sun.org.apache.xalan.internal.xsltc.dom.NodeCounter | setDefaultFormatting()Sets formatting fields to their default values.
setFormatting("1", "en", "alphabetic", null, null);
return this;
|
protected void | setFormatting(java.lang.String format, java.lang.String lang, java.lang.String letterValue, java.lang.String groupSep, java.lang.String groupSize)Sets formatting fields before calling formatNumbers().
_lang = lang;
_groupSep = groupSep;
_letterValue = letterValue;
try {
_groupSize = Integer.parseInt(groupSize);
}
catch (NumberFormatException e) {
_groupSize = 0;
}
setTokens(format);
|
public abstract com.sun.org.apache.xalan.internal.xsltc.dom.NodeCounter | setStartNode(int node)Set the start node for this counter. The same NodeCounter
object can be used multiple times by resetting the starting node.
|
private final void | setTokens(java.lang.String format)
if( (_format!=null) &&(format.equals(_format)) ){// has already been set
return;
}
_format = format;
// reset
final int length = _format.length();
boolean isFirst = true;
_separFirst = true;
_separLast = false;
_nSepars = 0;
_nFormats = 0;
_separToks.clear() ;
_formatToks.clear();
/*
* Tokenize the format string into alphanumeric and non-alphanumeric
* tokens as described in M. Kay page 241.
*/
for (int j = 0, i = 0; i < length;) {
char c = format.charAt(i);
for (j = i; Character.isLetterOrDigit(c);) {
if (++i == length) break;
c = format.charAt(i);
}
if (i > j) {
if (isFirst) {
_separToks.addElement(".");
isFirst = _separFirst = false;
}
_formatToks.addElement(format.substring(j, i));
}
if (i == length) break;
c = format.charAt(i);
for (j = i; !Character.isLetterOrDigit(c);) {
if (++i == length) break;
c = format.charAt(i);
isFirst = false;
}
if (i > j) {
_separToks.addElement(format.substring(j, i));
}
}
_nSepars = _separToks.size();
_nFormats = _formatToks.size();
if (_nSepars > _nFormats) _separLast = true;
if (_separFirst) _nSepars--;
if (_separLast) _nSepars--;
if (_nSepars == 0) {
_separToks.insertElementAt(".", 1);
_nSepars++;
}
if (_separFirst) _nSepars ++;
|
public com.sun.org.apache.xalan.internal.xsltc.dom.NodeCounter | setValue(double value)If the user specified a value attribute, use this instead of
counting nodes.
_value = value;
return this;
|