本文整理汇总了Java中org.kuali.rice.krad.util.KRADUtils.convertToHTMLAttributeSafeString方法的典型用法代码示例。如果您正苦于以下问题:Java KRADUtils.convertToHTMLAttributeSafeString方法的具体用法?Java KRADUtils.convertToHTMLAttributeSafeString怎么用?Java KRADUtils.convertToHTMLAttributeSafeString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.kuali.rice.krad.util.KRADUtils
的用法示例。
在下文中一共展示了KRADUtils.convertToHTMLAttributeSafeString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generateMessageText
import org.kuali.rice.krad.util.KRADUtils; //导入方法依赖的package包/类
/**
* Returns formatted message text for the given message namespace, component, and key
*
* @param namespace namespace code the message is associated with, if null the default namespace
* will be used
* @param componentCode component code the message is associated with, if null default component
* code is used
* @param messageKey key for the message to retrieve
* @param params list of parameters for the message text
* @return formatted message text
*/
public static String generateMessageText(String namespace, String componentCode, String messageKey,
List<String> params) {
String message = "NO MESSAGE";
if (StringUtils.isNotEmpty(messageKey)) {
message = KRADServiceLocatorWeb.getMessageService().getMessageText(namespace, componentCode, messageKey);
if (params != null && !params.isEmpty() && StringUtils.isNotEmpty(message)) {
message = MessageFormat.format(message, params.toArray());
message = MessageStructureUtils.translateStringMessage(message);
}
}
if (StringUtils.isEmpty(message)) {
message = messageKey;
}
//replace characters that might cause issues with their equivalent html codes
message = KRADUtils.convertToHTMLAttributeSafeString(message);
return message;
}
示例2: getSimpleDataAttributes
import org.kuali.rice.krad.util.KRADUtils; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public String getSimpleDataAttributes() {
String attributes = "";
if (getDataAttributes() == null) {
return attributes;
}
for (Map.Entry<String, String> data : getDataAttributes().entrySet()) {
if (data != null && data.getValue() != null) {
attributes = attributes + " " + "data-" + data.getKey() + "=\"" +
KRADUtils.convertToHTMLAttributeSafeString(data.getValue()) + "\"";
}
}
return attributes;
}
示例3: getAriaAttributesAsString
import org.kuali.rice.krad.util.KRADUtils; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public String getAriaAttributesAsString() {
String attributes = "";
if (getAriaAttributes() == null) {
return attributes;
}
for (Map.Entry<String, String> aria : getAriaAttributes().entrySet()) {
if (aria != null && aria.getValue() != null) {
attributes = attributes + " " + "aria-" + aria.getKey() + "=\"" +
KRADUtils.convertToHTMLAttributeSafeString(aria.getValue()) + "\"";
}
}
return attributes;
}