o using PluginUtils.element()

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@629080 13f79535-47bb-0310-9956-ffa450edef68
master
Vincent Siveton 2008-02-19 11:56:58 +00:00
parent 1974bf9853
commit 69b3b9bdac
1 changed files with 5 additions and 11 deletions

View File

@ -43,10 +43,13 @@ import java.util.Set;
* @todo add example usage tag that can be shown in the doco
* @todo need to add validation directives so that systems embedding maven2 can
* get validation directives to help users in IDEs.
*
* @version $Id$
*/
public class PluginDescriptorGenerator
implements Generator
{
/** {@inheritDoc} */
public void execute( File destinationDirectory, PluginDescriptor pluginDescriptor )
throws IOException
{
@ -436,17 +439,8 @@ public class PluginDescriptorGenerator
w.endElement();
}
public void element( XMLWriter w, String name, String value )
private void element( XMLWriter w, String name, String value )
{
w.startElement( name );
if ( value == null )
{
value = "";
}
w.writeText( value );
w.endElement();
PluginUtils.element( w, name, value );
}
}