Here you can find the source of humanReadableCommandLineOutput(List
Parameter | Description |
---|---|
arguments | Array of String |
public static String humanReadableCommandLineOutput(List<String> arguments)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { /**/*from ww w.j a v a 2s. com*/ * Build a human readable command line from the arguments set by the plugin * * @param arguments Array of String * @return String */ public static String humanReadableCommandLineOutput(List<String> arguments) { String debugOutput = ""; for (String argument : arguments) { debugOutput += argument + " "; } return debugOutput.trim(); } }