FileDocCategorySizeDatePackage
AttributeListStringifier.javaAPI DocGlassfish v2 API2827Fri May 04 22:25:02 BST 2007com.sun.cli.util.stringifier

AttributeListStringifier

public final class AttributeListStringifier extends Object implements Stringifier

Fields Summary
final String
mDelim
public static final AttributeListStringifier
DEFAULT
Constructors Summary
public AttributeListStringifier()

	
		
	
	
		this( "\n" );
	
public AttributeListStringifier(String delim)

		mDelim	= delim;
		
	
Methods Summary
public java.lang.Stringstringify(java.lang.Object o)

		final AttributeList	attrList	= (AttributeList)o;
		final Iterator	iter	= attrList.iterator();
		
		return( IteratorStringifier.stringify( iter, mDelim ) );