本文整理汇总了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);
}
示例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();
}
示例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);
}
示例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();
}
示例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);
}
示例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();
}