这里面包含了一百多个JAVA源文件

源代码在线查看: e874. adding a title to a border.txt

软件大小: 551 K
上传用户: maple_78
关键词: JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Use default border
				    TitledBorder titledBorder = BorderFactory.createTitledBorder("Title");
				    
				    // Create the title around existing border
				    titledBorder = BorderFactory.createTitledBorder(border, "Title");
				    
				    // Also available: DEFAULT_JUSTIFICATION, LEFT, RIGHT
				    titledBorder.setTitleJustification(TitledBorder.CENTER);
				    
				    // Also available: DEFAULT_POSITION, ABOVE_TOP, TOP,
				    // ABOVE_BOTTOM, BOTTOM, BELOW_BOTTOM
				    titledBorder.setTitlePosition(TitledBorder.BELOW_TOP);
				    
				    component.setBorder(titledBorder);
							

相关资源