1 19 20 package org.netbeans.modules.xml.xam.ui.layout; 21 22 import java.awt.Dimension ; 23 import javax.swing.JComponent ; 24 25 62 public class JSplitterSpace extends JComponent { 63 64 static final long serialVersionUID = 1L; 65 66 public synchronized Dimension getMinimumSize() { 67 return new Dimension (10, 10); 68 } 69 70 public synchronized Dimension getPreferredSize() { 71 return new Dimension (10, 10); 72 } 73 } 74 | Popular Tags |