當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。