String[] dim = text.split("[ \r\n\t]+");
String name = dim[0];
String data = text.substring(name.length()).trim();
FuzzyXMLProcessingInstructionImpl pi = new FuzzyXMLProcessingInstructionImpl(null, name, data, offset, end - offset);
if (getParent() != null) {
// �]�v�ȕ��������
((FuzzyXMLElement) getParent()).appendChild(pi);
}
else {