
org.openl.rules.ui.tablewizard.WizardUtils Maven / Gradle / Ivy
The newest version!
package org.openl.rules.ui.tablewizard;
import java.util.regex.Pattern;
import java.util.Collection;
import org.apache.commons.lang.StringUtils;
import org.openl.rules.webstudio.web.util.WebStudioUtils;
import org.openl.rules.lang.xls.binding.XlsMetaInfo;
import org.openl.types.IOpenClass;
import org.openl.types.NullOpenClass;
/**
* @author Aliaksandr Antonik.
*/
public class WizardUtils {
private static final Pattern REGEXP_PARAMETER = Pattern.compile("[a-zA-Z_][a-zA-Z_0-9]*");
public static void autoRename(Collection extends TableArtifact> conditions, String prefix) {
int i = 0;
for (TableArtifact c : conditions) {
c.setName(prefix + ++i);
}
}
public static String checkParameterName(String name) {
if (StringUtils.isEmpty(name)) {
return "Parameter name can not be empty";
}
if (!isValidParameter(name)) {
return "Invalid name for parameter";
}
return null;
}
public static XlsMetaInfo getMetaInfo() {
if (getProjectOpenClass() instanceof NullOpenClass) {
// module wasn`t loaded successfully.
//
throw new IllegalArgumentException("Module is corrupted.");
} else {
return (XlsMetaInfo) getProjectOpenClass().getMetaInfo();
}
}
public static IOpenClass getProjectOpenClass() {
return WebStudioUtils.getWebStudio().getModel().getCompiledOpenClass().getOpenClassWithErrors();
}
/**
* Checks a string to be a valid parameter name
*
* @param s String to check, must not be null
* @return if s
is a valid parameter name.
*/
public static boolean isValidParameter(String s) {
return REGEXP_PARAMETER.matcher(s).matches();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy