當前位置: 首頁>>代碼示例>>Java>>正文


Java Help類代碼示例

本文整理匯總了Java中org.kuali.rice.krad.uif.widget.Help的典型用法代碼示例。如果您正苦於以下問題:Java Help類的具體用法?Java Help怎麽用?Java Help使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Help類屬於org.kuali.rice.krad.uif.widget包,在下文中一共展示了Help類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getAdditionalTemplates

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * {@inheritDoc}
 */
@Override
public List<String> getAdditionalTemplates() {
    List<String> additionalTemplates = super.getAdditionalTemplates();

    Object parent = getContext().get(UifConstants.ContextVariableNames.PARENT);
    
    Help help = null;
    if (parent instanceof Group) {
        help = ((Group) parent).getHelp();
    } else if (parent instanceof View) {
        help = ((View) parent).getHelp();
    }
    
    if (help != null) {
        String helpTemplate = help.getTemplate();
        if (additionalTemplates.isEmpty()) {
            additionalTemplates = new ArrayList<String>();
        }
        additionalTemplates.add(helpTemplate);
    }
    
    return additionalTemplates;
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:27,代碼來源:Header.java

示例2: getHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * {@inheritDoc}
 */
@Override
@BeanTagAttribute(type = BeanTagAttribute.AttributeType.DIRECTORBYTYPE)
public Help getHelp() {
    return this.help;
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:9,代碼來源:DataFieldBase.java

示例3: setHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * {@inheritDoc}
 */
@Override
public void setHelp(Help help) {
    this.help = help;
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:8,代碼來源:DataFieldBase.java

示例4: getHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * {@inheritDoc}
 */
@Override
   @BeanTagAttribute(type= BeanTagAttribute.AttributeType.DIRECTORBYTYPE)
public Help getHelp() {
	return this.help;
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:9,代碼來源:ContainerBase.java

示例5: getHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * @see org.kuali.rice.krad.uif.widget.Helpable#getHelp()
 */
@Override
   @BeanTagAttribute(name="help",type= BeanTagAttribute.AttributeType.SINGLEBEAN)
public Help getHelp() {
	return this.help;
}
 
開發者ID:aapotts,項目名稱:kuali_rice,代碼行數:9,代碼來源:ContainerBase.java

示例6: setHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * @see org.kuali.rice.krad.uif.widget.Helpable#setHelp(org.kuali.rice.krad.uif.widget.Help)
 */
@Override
public void setHelp(Help help) {
	this.help = help;
}
 
開發者ID:aapotts,項目名稱:kuali_rice,代碼行數:8,代碼來源:ContainerBase.java

示例7: getHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * Help configuration object for the datafield
 *
 * <p>
 * External help information can be configured for the datafield. The
 * <code>Help</code> object can the configuration for rendering a link to
 * that help information.
 * </p>
 *
 * @return Help for datafield
 */
@Override
@BeanTagAttribute(name = "help", type = BeanTagAttribute.AttributeType.SINGLEBEAN)
public Help getHelp() {
    return this.help;
}
 
開發者ID:aapotts,項目名稱:kuali_rice,代碼行數:17,代碼來源:DataField.java

示例8: setHelp

import org.kuali.rice.krad.uif.widget.Help; //導入依賴的package包/類
/**
 * Setter for the datafield help content
 *
 * @param help
 */
@Override
public void setHelp(Help help) {
    this.help = help;
}
 
開發者ID:aapotts,項目名稱:kuali_rice,代碼行數:10,代碼來源:DataField.java


注:本文中的org.kuali.rice.krad.uif.widget.Help類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。