
uk.org.retep.util.builder.StringBuilder Maven / Gradle / Ivy
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package uk.org.retep.util.builder;
import uk.org.retep.util.builder.impl.ContentBuilderWrapper;
/**
*
* @author peter
* @deprecated in 10.4 use {@link FormatBuilder}
*/
@Deprecated
public class StringBuilder
extends ContentBuilderWrapper
{
public StringBuilder()
{
super( new FormatBuilder() );
}
public StringBuilder( final String format )
{
super( new FormatBuilder( format ) );
}
public StringBuilder( final String format, final Object... args )
{
super( new FormatBuilder( format, args ) );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy