edu.cmu.sv.domain.smart_house.GUI.ItemsPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoda Show documentation
Show all versions of yoda Show documentation
A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).
package edu.cmu.sv.domain.smart_house.GUI;
import java.awt.Dimension;
import javax.swing.BorderFactory;
import javax.swing.JPanel;
public class ItemsPanel extends JPanel {
public ItemsPanel() {
Dimension size = getPreferredSize();
size.width = 190;
setPreferredSize(size);
setBorder(BorderFactory.createTitledBorder("Items"));
}
}