Package io.schram.jwebassembly
Class Compiler
- java.lang.Object
-
- io.schram.jwebassembly.Compiler
-
public class Compiler extends java.lang.Object
Represents the intended JWebAssembly compiler implementation
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
artifactId
(package private) static java.lang.String
DEFAULT_ARTIFACT_ID
(package private) static java.lang.String
DEFAULT_GROUP_ID
(package private) static java.lang.String
DEFAULT_VERSION
private java.lang.String
groupId
private java.lang.String
version
-
Constructor Summary
Constructors Constructor Description Compiler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getArtifactId()
java.lang.String
getGroupId()
java.lang.String
getVersion()
(package private) void
setArtifactId(java.lang.String artifactId)
(package private) void
setGroupId(java.lang.String groupId)
(package private) void
setVersion(java.lang.String version)
java.lang.String
toString()
-
-
-
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:
toString
in classjava.lang.Object
-
-