attrcontainer.java
来自「这是一个Linux下的集成开发环境」· Java 代码 · 共 16 行
JAVA
16 行
// Copyright (c) 1997 Per M.A. Bothner.// This is free software; for terms and warranty disclaimer see ./COPYING.package gnu.bytecode;/** An interface for objects that (may) contain Attribute objects. */public interface AttrContainer{ /** Get the (first) Attribute of this container. */ public Attribute getAttributes (); /** Set the (list of) Attributes of this container. */ public void setAttributes (Attribute attribute);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?