本文整理汇总了Java中org.apache.hivemind.util.PropertyUtils类的典型用法代码示例。如果您正苦于以下问题:Java PropertyUtils类的具体用法?Java PropertyUtils怎么用?Java PropertyUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PropertyUtils类属于org.apache.hivemind.util包,在下文中一共展示了PropertyUtils类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: preparePreferencesForXML
import org.apache.hivemind.util.PropertyUtils; //导入依赖的package包/类
/**
* Ideally this should not be static but since we don't always have control over the superclass,
* make it available for classes that might otherwise not be able to use it due to inheritance
* constraints
* @param provider
* @param versionInt
* @return
*/
public static String preparePreferencesForXML (PropertyNamesProvider provider, int versionInt) {
String[] propertyNames = provider.getPreferencePropertyNames();
Element rootElement = DocumentHelper.createElement("mesquite");
Document preferencesDoc = DocumentHelper.createDocument(rootElement);
preferencesDoc.setRootElement(rootElement);
Element classElement = DocumentHelper.createElement(getShortClassName(provider.getClass()));
rootElement.add(classElement);
Element versionElement = DocumentHelper.createElement(VERSION);
versionElement.setText("" + versionInt);
classElement.add(versionElement);
for (int i = 0; i < propertyNames.length; i++) {
String currentPropertyName = propertyNames[i];
try {
Object prefsContent = PropertyUtils.read(provider, currentPropertyName);
if (prefsContent != null) {
Element nextPrefsElement = DocumentHelper.createElement(PREFERENCE);
nextPrefsElement.addAttribute(KEY, currentPropertyName);
nextPrefsElement.add(DocumentHelper.createCDATA(prefsContent.toString()));
classElement.add(nextPrefsElement);
}
} catch (Exception e) {
MesquiteMessage.warnProgrammer("Could not read property value " + currentPropertyName + " for writing xml preferences on module: " + provider);
}
//nextPrefsElement.addContent(new CDATA())
}
return XMLUtil.getDocumentAsXMLString(preferencesDoc);
}
示例2: parseFullXMLDocument
import org.apache.hivemind.util.PropertyUtils; //导入依赖的package包/类
/**
* Ideally this should not be static but since we don't always have control over the superclass,
* make it available for classes that might otherwise not be able to use it due to inheritance
* constraints
* @param prefsXML
* @param provider
* @param version
* @param versionsMustMatch
* @return
*/
public static boolean parseFullXMLDocument(String prefsXML, PropertyNamesProvider provider,
int version, boolean versionsMustMatch) {
Document doc = XMLUtil.getDocumentFromString(prefsXML);
if (doc == null) {
// not xml -- can't parse it
return false;
}
Element rootElement = doc.getRootElement();
String shortClassName = getShortClassName(provider.getClass());
Element classElement = rootElement.element(shortClassName);
if (classElement != null) {
String versionString = classElement.elementText(VERSION);
int versionInXml = MesquiteInteger.fromString(versionString);
boolean acceptableVersion = (versionInXml == version || !versionsMustMatch);
if (isCorrectRootTag(classElement.getName(), provider.getClass()) && acceptableVersion) {
List prefsChildren = classElement.elements(PREFERENCE);
for (Iterator iter = prefsChildren.iterator(); iter.hasNext();) {
Element nextPreferenceElement = (Element) iter.next();
String key = nextPreferenceElement.attributeValue(KEY);
String value = nextPreferenceElement.getText();
try {
PropertyUtils.smartWrite(provider, key, value);
} catch (Exception e) {
MesquiteMessage.warnProgrammer("Could not write property value " + key + " for loading xml preferences on module: " + provider);
}
}
return true;
}
}
return false;
}
示例3: preparePreferencesForXML
import org.apache.hivemind.util.PropertyUtils; //导入依赖的package包/类
/**
* Ideally this should not be static but since we don't always have control over the superclass,
* make it available for classes that might otherwise not be able to use it due to inheritance
* constraints
* @param provider
* @param versionInt
* @return
*/
public static String preparePreferencesForXML (PropertyNamesProvider provider, int versionInt) {
String[] propertyNames = provider.getPreferencePropertyNames();
Document preferencesDoc = new Document();
Element rootElement = new Element("mesquite");
preferencesDoc.setRootElement(rootElement);
Element classElement = new Element(getShortClassName(provider.getClass()));
rootElement.addContent(classElement);
Element versionElement = new Element(VERSION);
versionElement.setText("" + versionInt);
classElement.addContent(versionElement);
for (int i = 0; i < propertyNames.length; i++) {
String currentPropertyName = propertyNames[i];
try {
Object prefsContent = PropertyUtils.read(provider, currentPropertyName);
if (prefsContent != null) {
Element nextPrefsElement = new Element(PREFERENCE);
nextPrefsElement.setAttribute(KEY, currentPropertyName);
nextPrefsElement.addContent(new CDATA(prefsContent.toString()));
classElement.addContent(nextPrefsElement);
}
} catch (Exception e) {
MesquiteMessage.warnProgrammer("Could not read property value " + currentPropertyName + " for writing xml preferences on module: " + provider);
}
//nextPrefsElement.addContent(new CDATA())
}
return BaseXMLWriter.getDocumentAsString(preferencesDoc);
}
示例4: parseFullXMLDocument
import org.apache.hivemind.util.PropertyUtils; //导入依赖的package包/类
/**
* Ideally this should not be static but since we don't always have control over the superclass,
* make it available for classes that might otherwise not be able to use it due to inheritance
* constraints
* @param prefsXML
* @param provider
* @param version
* @param versionsMustMatch
* @return
*/
public static boolean parseFullXMLDocument(String prefsXML, PropertyNamesProvider provider,
int version, boolean versionsMustMatch) {
Document doc = BaseXMLReader.getDocumentFromString(prefsXML);
if (doc == null) {
// not xml -- can't parse it
return false;
}
Element rootElement = doc.getRootElement();
String shortClassName = getShortClassName(provider.getClass());
Element classElement = rootElement.getChild(shortClassName);
if (classElement != null) {
String versionString = classElement.getChildText(VERSION);
int versionInXml = MesquiteInteger.fromString(versionString);
boolean acceptableVersion = (versionInXml == version || !versionsMustMatch);
if (isCorrectRootTag(classElement.getName(), provider.getClass()) && acceptableVersion) {
List prefsChildren = classElement.getChildren(PREFERENCE);
for (Iterator iter = prefsChildren.iterator(); iter.hasNext();) {
Element nextPreferenceElement = (Element) iter.next();
String key = nextPreferenceElement.getAttributeValue(KEY);
String value = nextPreferenceElement.getText();
try {
PropertyUtils.smartWrite(provider, key, value);
} catch (Exception e) {
MesquiteMessage.warnProgrammer("Could not write property value " + key + " for loading xml preferences on module: " + provider);
}
}
return true;
}
}
return false;
}