}
}
// Example_Where_Clause
XmlElement Where_Clause = (XmlElement) document.getRootElement().getElements().get(1);
// 移除第一个
Where_Clause.removeElement(0);
StringBuilder sb = new StringBuilder();
XmlElement dynamicElement = new XmlElement("trim"); //$NON-NLS-1$
dynamicElement.addAttribute(new Attribute("prefix", "where")); //$NON-NLS-1$ //$NON-NLS-2$
dynamicElement.addAttribute(new Attribute("prefixOverrides", "and|or")); //$NON-NLS-1$ //$NON-NLS-2$