Package io.schram.jwebassembly
Class Compiler
- java.lang.Object
-
- io.schram.jwebassembly.Compiler
-
public class Compiler extends java.lang.ObjectRepresents the intended JWebAssembly compiler implementation
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringartifactId(package private) static java.lang.StringDEFAULT_ARTIFACT_ID(package private) static java.lang.StringDEFAULT_GROUP_ID(package private) static java.lang.StringDEFAULT_VERSIONprivate java.lang.StringgroupIdprivate java.lang.Stringversion
-
Constructor Summary
Constructors Constructor Description Compiler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetArtifactId()java.lang.StringgetGroupId()java.lang.StringgetVersion()(package private) voidsetArtifactId(java.lang.String artifactId)(package private) voidsetGroupId(java.lang.String groupId)(package private) voidsetVersion(java.lang.String version)java.lang.StringtoString()
-
-
-
Field Detail
-
DEFAULT_ARTIFACT_ID
static final java.lang.String DEFAULT_ARTIFACT_ID
- See Also:
- Constant Field Values
-
DEFAULT_GROUP_ID
static final java.lang.String DEFAULT_GROUP_ID
- See Also:
- Constant Field Values
-
DEFAULT_VERSION
static final java.lang.String DEFAULT_VERSION
- See Also:
- Constant Field Values
-
artifactId
private java.lang.String artifactId
-
groupId
private java.lang.String groupId
-
version
private java.lang.String version
-
-
Method Detail
-
getArtifactId
public java.lang.String getArtifactId()
- Returns:
- the artifactId as specified in the configuration.compiler tag, or the default (
DEFAULT_ARTIFACT_ID)
-
setArtifactId
void setArtifactId(java.lang.String artifactId)
-
getGroupId
public java.lang.String getGroupId()
- Returns:
- the groupId as specified in the configuration.compiler tag, or the default (
DEFAULT_GROUP_ID)
-
setGroupId
void setGroupId(java.lang.String groupId)
-
getVersion
public java.lang.String getVersion()
- Returns:
- the version as specified in the configuration.compiler tag, or the default (
DEFAULT_VERSION)
-
setVersion
void setVersion(java.lang.String version)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-