mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 12:57:57 +01:00
Add some documentation to AbstractSopCmd
This commit is contained in:
parent
5935d65c90
commit
dff5b01eec
1 changed files with 6 additions and 0 deletions
|
@ -24,8 +24,14 @@ import java.util.Locale;
|
||||||
import java.util.ResourceBundle;
|
import java.util.ResourceBundle;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract super class of SOP subcommands.
|
||||||
|
*/
|
||||||
public abstract class AbstractSopCmd implements Runnable {
|
public abstract class AbstractSopCmd implements Runnable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface to modularize resolving of environment variables.
|
||||||
|
*/
|
||||||
public interface EnvironmentVariableResolver {
|
public interface EnvironmentVariableResolver {
|
||||||
/**
|
/**
|
||||||
* Resolve the value of the given environment variable.
|
* Resolve the value of the given environment variable.
|
||||||
|
|
Loading…
Reference in a new issue