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

📄 mimetypespanel.java

📁 FMJ(freedom media for java)是java视频开发的新选择
💻 JAVA
字号:
package net.sf.fmj.ui.registry;import java.awt.GridBagConstraints;import java.awt.GridBagLayout;import javax.swing.JPanel;/** *  * @author Warren Bloomer * */public class MimeTypesPanel extends JPanel {	private static final long serialVersionUID = 1L;	/**	 * This is the default constructor	 */	public MimeTypesPanel() {		super();		initialize();	}	/**	 * This method initializes this	 */	private void initialize() {		this.setSize(300, 200);		this.setLayout(new GridBagLayout());				final PluginsPanel p = new PluginsPanel(EntryPanel.TYPE_MIME_TYPES);		GridBagConstraints c1 = new GridBagConstraints();		c1.fill = GridBagConstraints.BOTH;		c1.weightx = 1.0;		c1.weighty = 1.0;		c1.gridwidth = GridBagConstraints.REMAINDER;		//c1.insets = new Insets(0, 2, 0, 2);		this.add(p, c1);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -