Package com.mycila.maven.plugin.license
Class Multi
- java.lang.Object
-
- com.mycila.maven.plugin.license.Multi
-
public class Multi extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_SEPARATOR
-
Constructor Summary
Constructors Constructor Description Multi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getHeaders()String[]getInlineHeaders()StringgetPreamble()String[]getSeparators()voidsetHeader(String header)Set a header.voidsetHeaders(String[] headers)voidsetInlineHeader(String inlineHeader)Set an inline header.voidsetInlineHeaders(String[] inlineHeaders)voidsetPreamble(String preamble)voidsetSeparator(String separator)Set a separator.voidsetSeparators(String[] separators)
-
-
-
Field Detail
-
DEFAULT_SEPARATOR
public static final String DEFAULT_SEPARATOR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPreamble
public String getPreamble()
-
setPreamble
public void setPreamble(String preamble)
-
getHeaders
public String[] getHeaders()
-
setHeader
public void setHeader(String header)
Set a header.Used by Maven to configure the
headersfield, as the class field name is different to the alias name used in the pom.xml plugin configuration.- Parameters:
header- the header to set
-
setHeaders
public void setHeaders(String[] headers)
-
getInlineHeaders
public String[] getInlineHeaders()
-
setInlineHeader
public void setInlineHeader(String inlineHeader)
Set an inline header.Used by Maven to configure the
inlineHeadersfield, as the class field name is different to the alias name used in the pom.xml plugin configuration.- Parameters:
inlineHeader- the inline header to set
-
setInlineHeaders
public void setInlineHeaders(String[] inlineHeaders)
-
getSeparators
public String[] getSeparators()
-
setSeparator
public void setSeparator(String separator)
Set a separator.Used by Maven to configure the
separatorsfield, as the class field name is different to the alias name used in the pom.xml plugin configuration.- Parameters:
separator- the separator to set
-
setSeparators
public void setSeparators(String[] separators)
-
-