queuesamplermxbean.java

来自「jdk 6.0的api文档...很难找到哦」· Java 代码 · 共 17 行

JAVA
17
字号
/** * QueueSamplerMXBean.java - MXBean interface describing the management * operations and attributes for the QueueSampler MXBean. In this case * there is a read-only attribute "QueueSample" and an operation "clearQueue". */package com.example.mxbeans;@Author("Mr Bean")@Version("1.0")public interface QueueSamplerMXBean {    @DisplayName("GETTER: QueueSample")    public QueueSample getQueueSample();    @DisplayName("OPERATION: clearQueue")    public void clearQueue();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?