blob: af6bd9a12fb1215c62c58d87f7e202ecba60cb1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.core;
import org.eclipse.core.resources.IMarker;
import org.eclipse.dltk.internal.core.util.Util;
public class CorrectionEngine {
public static String[] getProblemArguments(IMarker problemMarker) {
String argumentsString = problemMarker.getAttribute(
IScriptModelMarker.ARGUMENTS, null);
return Util.getProblemArgumentsFromMarker(argumentsString);
}
/**
* returns <code>null</code> or string array
*
* @param arguments
* @return
*/
public static String[] decodeArguments(String arguments) {
if (arguments != null && arguments.length() != 0) {
return Util.getProblemArgumentsFromMarker(arguments);
} else {
return null;
}
}
/**
* returns <code>null</code> or string
*
* @param arguments
* @return
*/
public static String encodeArguments(String[] arguments) {
if (arguments != null && arguments.length != 0) {
return Util.getProblemArgumentsForMarker(arguments);
} else {
return null;
}
}
}