}
if (node.getType() == TreeNode.LIMIT_NODE) {
scopes = new String[] { "ip", "session" };
Limit limit = (Limit) node;
JLabel l1 = new JLabel("Limit: ");
l1.setFont(f);
l1.setAlignmentY(Component.CENTER_ALIGNMENT);
p.add(l1);
name = new JTextField(8);
name.addKeyListener(this);
name.setAlignmentY(Component.CENTER_ALIGNMENT);
name.setText(limit.getLimit());
p.add(name);
JLabel l2 = new JLabel("req/s");
l2.setFont(f);
l2.setAlignmentY(Component.CENTER_ALIGNMENT);