📄 objectelement.java
字号:
// Copyright (C) 2002 Takeshi Morimoto <morimoto@takopen.cs.uec.ac.jp>// All rights reserved.package yab.io;public class ObjectElement { public final int type; public final int length; public final int id; public final PropertyElement[] properties; public ObjectElement(int type, int length, int id, PropertyElement[] properties) { this.type = type; this.length = length; this.id = id; this.properties = properties; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -