All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.tomahawk.vm Maven / Gradle / Ivy

Go to download

A maven plugin that uses annotations (java15 or doclet style) to generate the necessary JSF configuration files (.tld, faces-config.xml, etc) and optionally Tag, Validator and Component classes.

The newest version!




   1.0
   1.2
   $shortname
   $uri
   $displayname
   $description

$baseContent

    
#set ($componentList = ${model.getComponents()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if ($utils.getTagPrefix($component.name) == $shortname) 
   
      $utils.getTagName($component.name)
      $component.tagClass
#if ($component.bodyContent)
      $component.bodyContent
#else
      JSP
#end
      
      
#set ($propertyList = ${component.propertyList})
#foreach( $property in $propertyList )
#if (!$property.isTagExcluded())
      
         $property.jspName
         $property.isRequired()
         false
         java.lang.String
#if ($property.longDescription)
         
#else
         
#end
      
#end
#end
   
#end
#end
#end
   
#set ($componentList = ${model.getConverters()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if ($utils.getTagPrefix($component.name) == $shortname) 
   
      $utils.getTagName($component.name)
      $component.tagClass
#if ($component.bodyContent)
      $component.bodyContent
#else
      empty
#end
      
      
#set ($propertyList = ${component.propertyList})
#foreach( $property in $propertyList )
#if (!$property.isTagExcluded())
      
         $property.name
         $property.isRequired()
         false
         java.lang.String
#if ($property.longDescription)
         
#else
         
#end
      
#end
#end
   
#end
#end
#end
   
#set ($componentList = ${model.getValidators()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if ($utils.getTagPrefix($component.name) == $shortname) 
   
      $utils.getTagName($component.name)
      $component.tagClass
#if ($component.bodyContent)
      $component.bodyContent
#else
      empty
#end
      
      
#set ($propertyList = ${component.propertyList})
#foreach( $property in $propertyList )
#if (!$property.isTagExcluded())
      
         $property.name
         $property.isRequired()
         false
         java.lang.String
#if ($property.longDescription)
         
#else
         
#end
      
#end
#end
   
#end
#end
#end
   
#set ($tagList = $model.getTags())
#foreach( $tag in $tagList )
#if ($modelIds.contains($tag.modelId))
   
      $utils.getTagName($tag.name)
      $tag.className
      $tag.bodyContent
      
#set ($attributeList = ${tag.attributeList})
#foreach( $attribute in $attributeList )
      
         $attribute.name
         $attribute.isRequired()
         $attribute.isRtexprvalue()
#if ($attribute.className)         
         $attribute.className
#else
         java.lang.String
#end
#if ($property.longDescription)
         
#else
         
#end
      
#end
   
#end
#end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy