com.g2forge.enigma.bash.model.statement.BashAssignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of en-bash Show documentation
Show all versions of en-bash Show documentation
Model & renderer for bash scripts. Yes, it can properly and safely quote them too.
The newest version!
package com.g2forge.enigma.bash.model.statement;
import lombok.Builder;
import lombok.Data;
import lombok.RequiredArgsConstructor;
@Data
@Builder(toBuilder = true)
@RequiredArgsConstructor
public class BashAssignment implements IBashStatement {
protected final String name;
protected final Object expression;
}