uriSchemeHandler.CommandResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of URISchemeHandler Show documentation
Show all versions of URISchemeHandler Show documentation
A Java library to open and register applications with a URI scheme.
The newest version!
package uriSchemeHandler;
public class CommandResult {
private final String result;
private final String error;
public CommandResult(final String result, final String error) {
this.result = result;
this.error = error;
}
public String getResult() {
return result;
}
public String getError() {
return error;
}
public boolean anyErrorOccured(){
return error.length() > 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy