Revision 7af0de29
new handling for subchars in feature sorter
cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/markup/MarkupImportState.java | ||
---|---|---|
328 | 328 |
* |
329 | 329 |
* @param feature |
330 | 330 |
*/ |
331 |
public void putFeatureToCharSorterList(Feature feature) { |
|
332 |
currentCharFeatureSorterList.add(new FeatureSorterInfo(feature)); |
|
333 |
|
|
331 |
public FeatureSorterInfo putFeatureToCharSorterList(Feature feature) { |
|
332 |
FeatureSorterInfo featureSorterInfo = new FeatureSorterInfo(feature); |
|
333 |
currentCharFeatureSorterList.add(featureSorterInfo); |
|
334 |
return featureSorterInfo; |
|
335 |
} |
|
336 |
|
|
337 |
public FeatureSorterInfo getLatestCharFeatureSorterInfo() { |
|
338 |
return currentCharFeatureSorterList.get(currentCharFeatureSorterList.size() - 1); |
|
334 | 339 |
} |
335 | 340 |
|
341 |
|
|
336 | 342 |
/** |
337 | 343 |
* |
338 | 344 |
* @param feature |
Also available in: Unified diff