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


Java HippoEssentialsGenerated类代码示例

本文整理汇总了Java中org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated的典型用法代码示例。如果您正苦于以下问题:Java HippoEssentialsGenerated类的具体用法?Java HippoEssentialsGenerated怎么用?Java HippoEssentialsGenerated使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: getText

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "publicationsystem:displayName")
public String getText() {
    String text = getProperty("publicationsystem:displayName");
    if (text == null || text.isEmpty()) {
        text = getResource().getFilename();
    }
    return text;
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:9,代码来源:Attachment.java

示例2: getIntroduction

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "externaldocumentpicker:introduction")
public String getIntroduction() {
    return getProperty("externaldocumentpicker:introduction");
}
 
开发者ID:jenskooij,项目名称:hippo-external-document-picker-example-implementation,代码行数:5,代码来源:ContentDocument.java

示例3: getTitle

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "externaldocumentpicker:title")
public String getTitle() {
    return getProperty("externaldocumentpicker:title");
}
 
开发者ID:jenskooij,项目名称:hippo-external-document-picker-example-implementation,代码行数:5,代码来源:ContentDocument.java

示例4: getContent

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "externaldocumentpicker:content")
public HippoHtml getContent() {
    return getHippoHtml("externaldocumentpicker:content");
}
 
开发者ID:jenskooij,项目名称:hippo-external-document-picker-example-implementation,代码行数:5,代码来源:ContentDocument.java

示例5: getPublicationDate

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "externaldocumentpicker:publicationdate")
public Calendar getPublicationDate() {
    return getProperty("externaldocumentpicker:publicationdate");
}
 
开发者ID:jenskooij,项目名称:hippo-external-document-picker-example-implementation,代码行数:5,代码来源:ContentDocument.java

示例6: getTitle

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "publicationsystem:Title")
public String getTitle() {
    return getProperty("publicationsystem:Title");
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Series.java

示例7: getSummary

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = "publicationsystem:Summary")
public StructuredText getSummary() {
    return new StructuredText(getProperty("publicationsystem:Summary"));
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Series.java

示例8: getKeys

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.TAXONOMY)
public String[] getKeys() {
    return getPropertyIfPermitted(PropertyKeys.TAXONOMY);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java

示例9: getSummary

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.SUMMARY)
public StructuredText getSummary() {
    assertPropertyPermitted(PropertyKeys.SUMMARY);

    return new StructuredText(getProperty(PropertyKeys.SUMMARY, ""));
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:7,代码来源:Publication.java

示例10: getKeyFacts

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.KEY_FACTS)
public StructuredText getKeyFacts() {
    assertPropertyPermitted(PropertyKeys.KEY_FACTS);

    return new StructuredText(getProperty(PropertyKeys.KEY_FACTS, ""));
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:7,代码来源:Publication.java

示例11: getInformationType

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.INFORMATION_TYPE)
public String[] getInformationType() {
    return getPropertyIfPermitted(PropertyKeys.INFORMATION_TYPE);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java

示例12: getCoverageStart

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.COVERAGE_START)
public Calendar getCoverageStart() {
    return getPropertyIfPermitted(PropertyKeys.COVERAGE_START);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java

示例13: getCoverageEnd

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.COVERAGE_END)
public Calendar getCoverageEnd() {
    return getPropertyIfPermitted(PropertyKeys.COVERAGE_END);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java

示例14: getGeographicCoverage

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.GEOGRAPHIC_COVERAGE)
public String getGeographicCoverage() {
    return getPropertyIfPermitted(PropertyKeys.GEOGRAPHIC_COVERAGE);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java

示例15: getGranularity

import org.onehippo.cms7.essentials.dashboard.annotations.HippoEssentialsGenerated; //导入依赖的package包/类
@HippoEssentialsGenerated(internalName = PropertyKeys.GRANULARITY)
public String[] getGranularity() {
    return getPropertyIfPermitted(PropertyKeys.GRANULARITY);
}
 
开发者ID:NHS-digital-website,项目名称:hippo,代码行数:5,代码来源:Publication.java


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