On the basis that JSF+Seam is rather weired in places I did this

  |         // Create the default set of Keywords (empty).
  |         keywordsSet =null; // = new LinkedHashSet<Keyword>();
  | 
  |   | 
  |   | and this
  |   | 
  |   | 
  |   |   |     public void addKeyword() {
  |   |   |         Keyword newKeyword = new Keyword();
  |   |   |         newKeyword.setKeyword(getNewKeyword());
  |   |   |         if (keywordsSet == null) {
  |   |   |             keywordsSet = new LinkedHashSet<Keyword>();
  |   |   |         }
  |   |   |         keywordsSet.add(newKeyword);
  |   |   |     }
  |   |   | 
  |   | 
  |   | And then it worked!
  |   | 
  |   | Is this a BUG  for JIRA or just annother odditity with JSF?
  |   | 
  |   | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039588#4039588

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039588
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to