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


Java RowChecker类代码示例

本文整理汇总了Java中com.liferay.portal.kernel.dao.search.RowChecker的典型用法代码示例。如果您正苦于以下问题:Java RowChecker类的具体用法?Java RowChecker怎么用?Java RowChecker使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


RowChecker类属于com.liferay.portal.kernel.dao.search包,在下文中一共展示了RowChecker类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getRowCheckBox

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
@Override
public String getRowCheckBox(HttpServletRequest request, boolean checked, boolean disabled, String primaryKey) {

    long entryId = GetterUtil.getLong(primaryKey);

    TaskRecord entry = TaskRecordLocalServiceUtil.fetchTaskRecord(entryId);

    boolean showInput = false;

    String name = null;

    if (entry != null) {
        name = TaskRecord.class.getSimpleName();

        try {
            if (TaskRecordPermission.contains(_permissionChecker, entry, ActionKeys.DELETE)) {

                showInput = true;
            }
        } catch (Exception e) {
        }
    }

    if (!showInput) {
        return StringPool.BLANK;
    }

    String checkBoxRowIds = getEntryRowIds();
    String checkBoxAllRowIds = "'#" + getAllRowIds() + "'";

    return getRowCheckBox(request, checked, disabled,
            _liferayPortletResponse.getNamespace() + RowChecker.ROW_IDS + name, primaryKey, checkBoxRowIds,
            checkBoxAllRowIds, StringPool.BLANK);
}
 
开发者ID:inofix,项目名称:ch-inofix-timetracker,代码行数:35,代码来源:EntriesChecker.java

示例2: getEntryRowIds

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
protected String getEntryRowIds() {
    StringBundler sb = new StringBundler(13);

    sb.append("['");
    sb.append(_liferayPortletResponse.getNamespace());
    sb.append(RowChecker.ROW_IDS);
    sb.append(TaskRecord.class.getSimpleName());
    sb.append("']");

    return sb.toString();
}
 
开发者ID:inofix,项目名称:ch-inofix-timetracker,代码行数:12,代码来源:EntriesChecker.java

示例3: getRowCheckBox

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
@Override
public String getRowCheckBox(HttpServletRequest request, boolean checked, boolean disabled, String primaryKey) {

    long entryId = GetterUtil.getLong(primaryKey);

    Contact entry = ContactLocalServiceUtil.fetchContact(entryId);

    boolean showInput = false;

    String name = null;

    if (entry != null) {
        name = Contact.class.getSimpleName();

        try {
            if (ContactPermission.contains(_permissionChecker, entry, ActionKeys.DELETE)) {

                showInput = true;
            }
        } catch (Exception e) {
        }
    }

    if (!showInput) {
        return StringPool.BLANK;
    }

    String checkBoxRowIds = getEntryRowIds();
    String checkBoxAllRowIds = "'#" + getAllRowIds() + "'";

    return getRowCheckBox(request, checked, disabled,
            _liferayPortletResponse.getNamespace() + RowChecker.ROW_IDS + name, primaryKey, checkBoxRowIds,
            checkBoxAllRowIds, StringPool.BLANK);
}
 
开发者ID:inofix,项目名称:ch-inofix-contact-manager,代码行数:35,代码来源:EntriesChecker.java

示例4: getEntryRowIds

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
protected String getEntryRowIds() {
    StringBundler sb = new StringBundler(13);

    sb.append("['");
    sb.append(_liferayPortletResponse.getNamespace());
    sb.append(RowChecker.ROW_IDS);
    sb.append(Contact.class.getSimpleName());
    sb.append("']");

    return sb.toString();
}
 
开发者ID:inofix,项目名称:ch-inofix-contact-manager,代码行数:12,代码来源:EntriesChecker.java

示例5: getRowCheckBox

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
@Override
public String getRowCheckBox(HttpServletRequest request, boolean checked, boolean disabled, String primaryKey) {

    long entryId = GetterUtil.getLong(primaryKey);

    Measurement entry = MeasurementLocalServiceUtil.fetchMeasurement(entryId);

    boolean showInput = false;

    String name = null;

    if (entry != null) {
        name = Measurement.class.getSimpleName();

        try {
            if (MeasurementPermission.contains(_permissionChecker, entry, ActionKeys.DELETE)) {

                showInput = true;
            }
        } catch (Exception e) {
        }
    }

    if (!showInput) {
        return StringPool.BLANK;
    }

    String checkBoxRowIds = getEntryRowIds();
    String checkBoxAllRowIds = "'#" + getAllRowIds() + "'";

    return getRowCheckBox(request, checked, disabled,
            _liferayPortletResponse.getNamespace() + RowChecker.ROW_IDS + name, primaryKey, checkBoxRowIds,
            checkBoxAllRowIds, StringPool.BLANK);
}
 
开发者ID:inofix,项目名称:ch-inofix-data-manager,代码行数:35,代码来源:EntriesChecker.java

示例6: getEntryRowIds

import com.liferay.portal.kernel.dao.search.RowChecker; //导入依赖的package包/类
protected String getEntryRowIds() {
    StringBundler sb = new StringBundler(13);

    sb.append("['");
    sb.append(_liferayPortletResponse.getNamespace());
    sb.append(RowChecker.ROW_IDS);
    sb.append(Measurement.class.getSimpleName());
    sb.append("']");

    return sb.toString();
}
 
开发者ID:inofix,项目名称:ch-inofix-data-manager,代码行数:12,代码来源:EntriesChecker.java


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