Another bastardization of XML but since this was never designed for humans to 
write anyway....

As scott says, allow ANY types for things like < properties > and read in the 
element name as the property's name directly, so


  | <property name="bindAddress">127.0.0.1</property>
  |             <property name="someDate">Sun Jan  2 23:26:49 PST 
2005</property>
  |             <property name="names">name1,name2,name3</property>
  |             <property name="someURL">http://www.jboss.org</property>
  | 
becomes....



  | <properties>
  |   <BindAddress value="127.0.0.1"/>
  |   <SomeDate value="Sun Jan  2 23:26:49 PST 2005"/>
  |   <Names value="name1, name2, name3"/>
  | 
  | ... etc ..
  | </properties>
  | 

Reduces a lot of useless redundant words and typing. So similar (same?) to your 
URLLoader element shortcut.




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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3870554


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to