public void appendChildrenFromText(String text, boolean wo54) {
if (text.length() == 0) {
return;
}
// ��x�G�������g��}��ăI�t�Z�b�g���擾
FuzzyXMLElement test = new FuzzyXMLElementImpl("test");
appendChild(test);
int offset = test.getOffset();
// �I�t�Z�b�g���擾�����炷���폜
removeChild(test);
String parseText = "<root>" + text + "</root>";
FuzzyXMLElement root = new FuzzyXMLParser(wo54).parse(parseText).getDocumentElement();
((AbstractFuzzyXMLNode) root).appendOffset(root, 0, -6);
((AbstractFuzzyXMLNode) root).appendOffset(root, 0, offset);
FuzzyXMLNode[] nodes = ((FuzzyXMLElement) root.getChildren()[0]).getChildren();
appendOffset(this, offset, text.length());
for (int i = 0; i < nodes.length; i++) {
appendChild(nodes[i], false, false);