Java源码示例:org.apache.ivy.util.extendable.ExtendableItem
示例1
/**
* Writes the extra attributes of the given {@link org.apache.ivy.util.extendable.ExtendableItem} to the given <tt>PrintWriter</tt>.
*
* @param item the {@link org.apache.ivy.util.extendable.ExtendableItem}, cannot be <tt>null</tt>
* @param writer the writer to use
*/
private static void printExtraAttributes(ExtendableItem item, SimpleXmlWriter writer) throws IOException {
printExtraAttributes(item.getQualifiedExtraAttributes(), writer);
}
示例2
/**
* Writes the extra attributes of the given {@link org.apache.ivy.util.extendable.ExtendableItem} to the given <tt>PrintWriter</tt>.
*
* @param item the {@link org.apache.ivy.util.extendable.ExtendableItem}, cannot be <tt>null</tt>
* @param writer the writer to use
*/
private static void printExtraAttributes(ExtendableItem item, SimpleXmlWriter writer) throws IOException {
printExtraAttributes(item.getQualifiedExtraAttributes(), writer);
}
示例3
/**
* Writes the extra attributes of the given {@link org.apache.ivy.util.extendable.ExtendableItem} to the given <tt>PrintWriter</tt>.
*
* @param item the {@link org.apache.ivy.util.extendable.ExtendableItem}, cannot be <tt>null</tt>
* @param writer the writer to use
*/
private static void printExtraAttributes(ExtendableItem item, SimpleXmlWriter writer) throws IOException {
printExtraAttributes(item.getQualifiedExtraAttributes(), writer);
}
示例4
/**
* Writes the extra attributes of the given {@link org.apache.ivy.util.extendable.ExtendableItem} to the given <tt>PrintWriter</tt>.
*
* @param item the {@link org.apache.ivy.util.extendable.ExtendableItem}, cannot be <tt>null</tt>
* @param writer the writer to use
*/
private static void printExtraAttributes(ExtendableItem item, SimpleXmlWriter writer) throws IOException {
printExtraAttributes(item.getQualifiedExtraAttributes(), writer);
}
示例5
/**
* Writes the extra attributes of the given {@link ExtendableItem} to the given
* <tt>PrintWriter</tt>.
*
* @param item
* the {@link ExtendableItem}, cannot be <tt>null</tt>
* @param out
* the writer to use
* @param prefix
* the string to write before writing the attributes (if any)
*/
private static void printExtraAttributes(ExtendableItem item, PrintWriter out, String prefix) {
printExtraAttributes(item.getQualifiedExtraAttributes(), out, prefix);
}