* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- *
+ *
* SPDX-License-Identifier: Apache-2.0
* ============LICENSE_END=========================================================
*/
*/
public class CommandLineParameters {
// Recurring string constants
- private static final String OF_TYPE_TAG = "of type ";
-
+ private static final String OF_TYPE_TAG = " of type ";
+
// Default location of the command definition meta data in JSON
private static final String JSON_COMMAND_METADATA_RESOURCE = "etc/editor/Commands.json";
private static final String APEX_MODEL_PROPERTIES_RESOURCE = "etc/editor/ApexModelProperties.json";
/**
* Check if the command failures flag is set.
- *
+ *
* @return true if the command failures flag has been set
*/
public boolean checkSetIgnoreCommandFailures() {
/**
* Checks if the command failures flag is set.
- *
+ *
* @param ignoreCommandFailuresSet true if the command failures flag has been set
*/
public void setIgnoreCommandFailuresSet(final boolean ignoreCommandFailuresSet) {
/**
* Checks if command failures should be ignored and command execution continue.
- *
+ *
* @return true if command failures should be ignored
*/
public boolean isIgnoreCommandFailures() {
/**
* Sets if command errors should be ignored and command execution continue.
- *
+ *
* @param ignoreCommandFailures true if command errors should be ignored
*/
public void setIgnoreCommandFailures(final boolean ignoreCommandFailures) {