<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4134.600" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>But you still have to have the setText() method so 
that you can update the text</FONT></DIV>
<DIV><FONT face=Arial size=2>attribute of an existing element.. I'd rather not 
see so many "convenience" methods</FONT></DIV>
<DIV><FONT face=Arial size=2>in the core API.. why not just write your own 
utility class if you need it..</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Just my 2 cents</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Charlie</FONT></DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=mjenning@islandnet.com href="mailto:mjenning@islandnet.com">Mike 
  Jennings</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A title=jdom-interest@jdom.org 
  href="mailto:jdom-interest@jdom.org">jdom-interest@jdom.org</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, December 28, 2000 11:11 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> [jdom-interest] API 
  suggestion</DIV>
  <DIV><BR></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>What about a factory method in org.jdom.Element 
  that creates an element and sets its</FONT></DIV>
  <DIV><FONT face=Arial size=2>text all in one go.</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>public static Element createElement(String 
  name,String text)</FONT></DIV>
  <DIV><FONT face=Arial size=2>&nbsp;{</FONT></DIV>
  <DIV><FONT face=Arial size=2>&nbsp; Element e=new Element(name);</FONT></DIV>
  <DIV><FONT face=Arial size=2>&nbsp; e.setText(text);</FONT></DIV>
  <DIV><FONT face=Arial size=2>&nbsp; return e;</FONT></DIV>
  <DIV><FONT face=Arial size=2>&nbsp;}</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Then, one could replace code that looks like the 
  following:</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Element e=new 
  Element("somename").setText("somevalue");</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>with</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Element 
  e=Element.createElement("somename","somevalue");</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Basically just as a convenience method for 
  programmers that need to create a lot of</FONT></DIV>
  <DIV><FONT face=Arial size=2>elements with text but no attributes.</DIV>
  <DIV><BR></DIV>
  <DIV>Comments?</DIV>
  <DIV>-Mike Jennings<BR></FONT></DIV></BLOCKQUOTE></BODY></HTML>