All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.metamodel.commons.debug.Debug Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.commons.debug;

public final class Debug {
    private static final String SPACES = "                                                                                                            ";
    private static final int NO_OF_SPACES = SPACES.length();

    public static String indentString(final int indentSpaces) {
        return SPACES.substring(0, Math.min(NO_OF_SPACES, indentSpaces));
    }
}
// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy