stackentry.java
来自「OpenJGraph是一个开源的Java库」· Java 代码 · 共 26 行
JAVA
26 行
package salvo.jesus.graph.xml;import org.xml.sax.Attributes;/** * An entry in a stack for tracing where we are in the SAX processing */class StackEntry { private String elementName; private Attributes elementAttributes; public StackEntry( String name, Attributes attribs ) { this.elementName = name; this.elementAttributes = attribs; } public String getElementName() { return this.elementName; } public Attributes getElementAttributes() { return this.elementAttributes; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?