📄 i_attributeuser.java
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -