roundstate.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 43 行
JAVA
43 行
/* * @(#)RoundState.java 1.1 04/06/25 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.mirror.apt;/** * Represents the status of a completed round of annotation processing. * * @author Joseph D. Darcy * @author Scott Seligman * @version 1.1 04/06/25 * @since 1.5 */public interface RoundState { /** * Returns <tt>true</tt> if this was the last round of annotation * processing; returns <tt>false</tt> if there will be a subsequent round. */ boolean finalRound(); /** * Returns <tt>true</tt> if an error was raised in this round of processing; * returns <tt>false</tt> otherwise. */ boolean errorRaised(); /** * Returns <tt>true</tt> if new source files were created in this round of * processing; returns <tt>false</tt> otherwise. */ boolean sourceFilesCreated(); /** * Returns <tt>true</tt> if new class files were created in this round of * processing; returns <tt>false</tt> otherwise. */ boolean classFilesCreated();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?