资源简介
代码片段和文件信息
/*******************************************************************************
* Copyright (c) 2011 Google Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Google Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.wb.swing;
import java.awt.Component;
import java.awt.Container;
import java.awt.FocusTraversalPolicy;
/**
* Cyclic focus traversal policy based on array of components.
*
* This class may be freely distributed as part of any application or plugin.
*
* @author scheglov_ke
*/
public class FocusTraversalOnArray extends FocusTraversalPolicy {
private final Component m_Components[];
////////////////////////////////////////////////////////////////////////////
//
// Constructor
//
////////////////////////////////////////////////////////////////////////////
public FocusTraversalOnArray(Component components[]) {
m_Components = components;
}
////////////////////////////////////////////////////////////////////////////
//
// Utilities
//
////////////////////////////////////////////////////////////////////////////
private int indexCycle(int index int delta) {
int size = m_Components.length;
int next = (index + delta + size) % size;
return next;
}
private Component cycle(Component currentComponent int delta) {
int index = -1;
loop : for (int i = 0; i < m_Components.length; i++) {
Component component = m_Components[i];
for (Component c = currentComponent; c != null; c = c.getParent()) {
if (component == c) {
index = i;
break loop;
}
}
}
// try to find enabled component in “delta“ direction
int initialIndex = index;
while (true) {
int newIndex = indexCycle(index delta);
if (newIndex == initialIndex) {
break;
}
index = newIndex;
//
Component component = m_Components[newIndex];
if (component.isEnabled() && component.isVisible() && component.isFocusable()) {
return component;
}
}
// not found
return currentComponent;
}
////////////////////////////////////////////////////////////////////////////
//
// FocusTraversalPolicy
//
////////////////////////////////////////////////////////////////////////////
public Component getComponentAfter(Container container Component component) {
return cycle(component 1);
}
public Component getComponentBefore(Container container Component component) {
return cycle(component -1);
}
public Component getFirstComponent(Container container) {
return m_Components[0];
}
public Component getLastComponent(Container container) {
return m_Components[m_Components.length - 1];
}
public Component getDefaultComponent(Container container) {
return getFirstComponent(contain
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-07-30 15:35 yan0603\
文件 614 2017-06-05 08:10 yan0603\.classpath
文件 383 2017-06-03 15:09 yan0603\.project
目录 0 2018-07-30 15:35 yan0603\.settings\
文件 598 2017-06-03 15:09 yan0603\.settings\org.eclipse.jdt.core.prefs
文件 932 2017-06-08 15:40 yan0603\BackgroundImage.jar
目录 0 2018-07-30 15:35 yan0603\bin\
目录 0 2018-07-30 15:35 yan0603\bin\org\
目录 0 2018-07-30 15:35 yan0603\bin\org\eclipse\
目录 0 2018-07-30 15:35 yan0603\bin\org\eclipse\wb\
目录 0 2018-07-30 15:35 yan0603\bin\org\eclipse\wb\swing\
文件 1988 2017-06-08 15:59 yan0603\bin\org\eclipse\wb\swing\FocusTraversalOnArray.class
目录 0 2018-07-30 15:35 yan0603\bin\yan0603\
文件 607 2017-06-12 10:43 yan0603\bin\yan0603\Login$1.class
文件 7015 2017-06-12 10:43 yan0603\bin\yan0603\Login.class
文件 625 2017-06-11 08:42 yan0603\bin\yan0603\Register$1.class
文件 6582 2017-06-11 08:42 yan0603\bin\yan0603\Register.class
文件 3553 2017-06-10 16:40 yan0603\bin\yan0603\Select.class
文件 789 2017-06-09 11:26 yan0603\bin\yan0603\Vote$1.class
文件 3595 2017-06-09 11:26 yan0603\bin\yan0603\Vote$MyActionListener.class
文件 9069 2017-06-09 11:26 yan0603\bin\yan0603\Vote.class
文件 7753 2017-06-09 11:26 yan0603\bin\yan0603\VoteBuy.class
文件 81600 2017-06-03 21:58 yan0603\jgoodies-common-1.8.0-sources.jar
文件 44882 2017-06-03 21:58 yan0603\jgoodies-common-1.8.0.jar
文件 174206 2017-06-03 21:58 yan0603\jgoodies-forms-1.8.0-sources.jar
文件 131647 2017-06-03 21:58 yan0603\jgoodies-forms-1.8.0.jar
目录 0 2018-07-30 15:35 yan0603\src\
目录 0 2018-07-30 15:35 yan0603\src\org\
目录 0 2018-07-30 15:35 yan0603\src\org\eclipse\
目录 0 2018-07-30 15:35 yan0603\src\org\eclipse\wb\
目录 0 2018-07-30 15:35 yan0603\src\org\eclipse\wb\swing\
............此处省略10个文件信息
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论