本文整理汇总了Java中org.fest.swing.annotation.RunsInCurrentThread类的典型用法代码示例。如果您正苦于以下问题:Java RunsInCurrentThread类的具体用法?Java RunsInCurrentThread怎么用?Java RunsInCurrentThread使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RunsInCurrentThread类属于org.fest.swing.annotation包,在下文中一共展示了RunsInCurrentThread类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validateFileToChoose
import org.fest.swing.annotation.RunsInCurrentThread; //导入依赖的package包/类
@RunsInCurrentThread
private static <FileObject> void validateFileToChoose(VFSJFileChooser<FileObject> fileChooser, FileObject file) {
VFSJFileChooser.SELECTION_MODE mode = fileChooser.getFileSelectionMode();
boolean isFolder = fileChooser.getFileSystemView().isDirectory(file);
if (mode == VFSJFileChooser.SELECTION_MODE.FILES_ONLY && isFolder)
throw cannotSelectFile(file, "the file chooser cannot open directories");
if (mode == VFSJFileChooser.SELECTION_MODE.DIRECTORIES_ONLY && !isFolder)
throw cannotSelectFile(file, "the file chooser can only open directories");
}
示例2: isMatching
import org.fest.swing.annotation.RunsInCurrentThread; //导入依赖的package包/类
/** Returns true if the given tag is the one we seek */
@RunsInCurrentThread
protected abstract boolean isMatching(@NotNull XmlTag tag);
示例3: isRectangleVisible
import org.fest.swing.annotation.RunsInCurrentThread; //导入依赖的package包/类
@RunsInCurrentThread
private static boolean isRectangleVisible(final VNumber vNumber, final Rectangle r)
{
final Rectangle visible = vNumber.getVisibleRect();
return visible.contains(r.x, r.y);
}