| | |
| | | boolean continueStartup, int errorID, |
| | | String errorMessage) |
| | | { |
| | | |
| | | this.completedSuccessfully = completedSuccessfully; |
| | | this.continueStartup = continueStartup; |
| | | this.errorID = errorID; |
| | |
| | | */ |
| | | public boolean completedSuccessfully() |
| | | { |
| | | |
| | | return completedSuccessfully; |
| | | } |
| | | |
| | |
| | | */ |
| | | public boolean continueStartup() |
| | | { |
| | | |
| | | return continueStartup; |
| | | } |
| | | |
| | |
| | | */ |
| | | public int getErrorID() |
| | | { |
| | | |
| | | return errorID; |
| | | } |
| | | |
| | |
| | | */ |
| | | public String getErrorMessage() |
| | | { |
| | | |
| | | return errorMessage; |
| | | } |
| | | |
| | |
| | | */ |
| | | public String toString() |
| | | { |
| | | |
| | | StringBuilder buffer = new StringBuilder(); |
| | | toString(buffer); |
| | | return buffer.toString(); |
| | |
| | | */ |
| | | public void toString(StringBuilder buffer) |
| | | { |
| | | |
| | | buffer.append("StartupPluginResult(completedSuccessfully="); |
| | | buffer.append(completedSuccessfully); |
| | | buffer.append(", continueStartup="); |