int length;
length = CHARACTERISTIC_SHORTHANDS.length;
characteristicAnalyzers = new EdgeCharacteristicAnalyzer[length];
for (int i = 0; i < length; i++) {
StyleShorthand shorthand = CHARACTERISTIC_SHORTHANDS[i];
characteristicAnalyzers[i] = new EdgeCharacteristicAnalyzer(
shorthand, checker, ANY_REQUIRED_VALUES[i],
supportedShorthands);
}
length = EDGE_SHORTHANDS.length;
edgeAnalyzers = new ShorthandAnalyzer[length];
for (int i = 0; i < length; i++) {
StyleShorthand shorthand = EDGE_SHORTHANDS[i];
edgeAnalyzers[i] = new BasicShorthandAnalyzer(shorthand, checker,
supportedShorthands);
}
characteristics = new StyleValue[CHARACTERISTIC_COUNT];