Revision 44351 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.swing/org.gvsig.fmap.dal.swing.impl/src/main/java/org/gvsig/fmap/dal/swing/impl/featuretype/FeatureTypePanelView.java

View differences:

FeatureTypePanelView.java
40 40
   JLabel lblTagsName = new JLabel();
41 41
   JLabel lblTagsValue = new JLabel();
42 42
   JComboBox cboTagsName = new JComboBox();
43
   JTextField txtTagsValue = new JTextField();
44 43
   JTable tblTags = new JTable();
45 44
   JButton btnTagsAdd = new JButton();
46 45
   JButton btnTagsUpdate = new JButton();
47 46
   JButton btnTagsRemove = new JButton();
48 47
   JLabel lblTagsDescription = new JLabel();
48
   JComboBox cboTagsValue = new JComboBox();
49 49
   JLabel lblTags = new JLabel();
50 50

  
51 51
   /**
......
279 279
      cboTagsName.setRequestFocusEnabled(false);
280 280
      jpanel1.add(cboTagsName,cc.xy(3,3));
281 281

  
282
      txtTagsValue.setName("txtTagsValue");
283
      jpanel1.add(txtTagsValue,cc.xy(3,5));
284

  
285 282
      tblTags.setName("tblTags");
286 283
      JScrollPane jscrollpane1 = new JScrollPane();
287 284
      jscrollpane1.setViewportView(tblTags);
......
293 290
      lblTagsDescription.setName("lblTagsDescription");
294 291
      jpanel1.add(lblTagsDescription,cc.xy(3,6));
295 292

  
293
      cboTagsValue.setEditable(true);
294
      cboTagsValue.setName("cboTagsValue");
295
      cboTagsValue.setRequestFocusEnabled(false);
296
      jpanel1.add(cboTagsValue,cc.xy(3,5));
297

  
296 298
      addFillComponents(jpanel1,new int[]{ 2,3,4,5 },new int[]{ 2,4,6 });
297 299
      return jpanel1;
298 300
   }

Also available in: Unified diff