⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queuesamplermxbean.java

📁 jdk-6u10-docs java开发宝典
💻 JAVA
字号:
/** * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -