i_attributeuser.java
来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 28 行
JAVA
28 行
/*------------------------------------------------------------------------------Name: I_AttributeUser.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util;/** * @author michele@laghi.eu */public interface I_AttributeUser { void addAttribute(String key, String value); /** * When the attribute is written to a string in the toXml methods it is wrapped inside a CDATA in case * you pass 'true' here. */ void wrapAttributeInCDATA(String attributeKey); /** * When the attribute is written to a string in the toXml methods it is wrapped inside a CDATA. This can * be undone if you pass 'true' here. */ void unwrapAttributeFromCDATA(String attributeKey);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?