当前位置: 首页>>代码示例>>Java>>正文


Java KRADUtils.convertToHTMLAttributeSafeString方法代码示例

本文整理汇总了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;
}
 
开发者ID:kuali,项目名称:kc-rice,代码行数:32,代码来源:ClientValidationUtils.java

示例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;
}
 
开发者ID:kuali,项目名称:kc-rice,代码行数:21,代码来源:ComponentBase.java

示例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;
}
 
开发者ID:kuali,项目名称:kc-rice,代码行数:21,代码来源:ComponentBase.java


注:本文中的org.kuali.rice.krad.util.KRADUtils.convertToHTMLAttributeSafeString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。