Examples of JGitFlowReportEntry


Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

    }


    public JGitFlowReporter debugCommandCall(String shortName)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "## _Command call():_ ", true, false));
        indent += PAD;
       
        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter debugText(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "_ " + text + " _", true, false));

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter errorText(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "** " + text + " **", false, true));

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter commandCall(String shortName)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "## Command call(): ", false, false));
        indent += PAD;

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter debugMethod(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "_method start:_ " + text, true, false));
        indent += PAD;

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter infoText(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + text, false, false));

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        sb.append(Strings.repeat(" ", indent))
          .append("### Merge Result")
          .append(EOL)
          .append(mergeResult.toString());

        entries.add(new JGitFlowReportEntry(shortName, sb.toString(), false, false));

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

    }


    public JGitFlowReporter debugCommandCall(String shortName)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "## _Command call():_ ", true, false));
        indent += PAD;
       
        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter debugText(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "_ " + text + " _", true, false));

        return this;
    }
View Full Code Here

Examples of com.atlassian.jgitflow.core.report.JGitFlowReportEntry

        return this;
    }

    public JGitFlowReporter errorText(String shortName, String text)
    {
        entries.add(new JGitFlowReportEntry(shortName, Strings.repeat(" ", indent) + "** " + text + " **", false, true));

        return this;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.