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


Java AutoEscape类代码示例

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


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

示例1: getTitleCurrentValue

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
@AutoEscape
public String getTitleCurrentValue();
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:3,代码来源:CourseModel.java

示例2: getDescriptionCurrentValue

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
@AutoEscape
public String getDescriptionCurrentValue();
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:3,代码来源:LearningActivityModel.java

示例3: getDiplomaTemplateCurrentValue

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
@AutoEscape
public String getDiplomaTemplateCurrentValue();
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:3,代码来源:CompetenceModel.java

示例4: getDescriptionCurrentLanguageId

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
@AutoEscape
public String getDescriptionCurrentLanguageId();
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:3,代码来源:ModuleModel.java

示例5: getUuid

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the uuid of this jasper.
 *
 * @return the uuid of this jasper
 */
@AutoEscape
public String getUuid();
 
开发者ID:VietOpenCPS,项目名称:opencps-v2,代码行数:8,代码来源:jasperModel.java

示例6: getRegionName

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the region name of this region.
 *
 * @return the region name of this region
 */
@AutoEscape
public String getRegionName();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:8,代码来源:RegionModel.java

示例7: getCountryName

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the country name of this country.
 *
 * @return the country name of this country
 */
@AutoEscape
public String getCountryName();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:8,代码来源:CountryModel.java

示例8: getUuid

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the uuid of this foo.
 *
 * @return the uuid of this foo
 */
@AutoEscape
@Override
public String getUuid();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:9,代码来源:FooModel.java

示例9: getUserName

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the user name of this foo.
 *
 * @return the user name of this foo
 */
@AutoEscape
@Override
public String getUserName();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:9,代码来源:FooModel.java

示例10: getField1

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the field1 of this foo.
 *
 * @return the field1 of this foo
 */
@AutoEscape
public String getField1();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:8,代码来源:FooModel.java

示例11: getField5

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the field5 of this foo.
 *
 * @return the field5 of this foo
 */
@AutoEscape
public String getField5();
 
开发者ID:liferay,项目名称:liferay-blade-samples,代码行数:8,代码来源:FooModel.java

示例12: getTelNo

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the tel no of this sub account.
 *
 * @return the tel no of this sub account
 */
@AutoEscape
public String getTelNo();
 
开发者ID:openegovplatform,项目名称:OEPv2,代码行数:8,代码来源:SubAccountModel.java

示例13: getUuid

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the uuid of this learning activity.
 *
 * @return the uuid of this learning activity
 */
@AutoEscape
public String getUuid();
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:8,代码来源:LearningActivityModel.java

示例14: getProcedureFilter

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the procedure filter of this dossier folder.
 *
 * @return the procedure filter of this dossier folder
 */
@AutoEscape
public String getProcedureFilter();
 
开发者ID:openegovplatform,项目名称:OEPv2,代码行数:8,代码来源:DossierFolderModel.java

示例15: getGovAgencyName

import com.liferay.portal.kernel.bean.AutoEscape; //导入依赖的package包/类
/**
 * Returns the gov agency name of this dossier.
 *
 * @return the gov agency name of this dossier
 */
@AutoEscape
public String getGovAgencyName();
 
开发者ID:openegovplatform,项目名称:OEPv2,代码行数:8,代码来源:DossierModel.java


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