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

META-INF.facelets-taglib.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!





    $uri

$baseContent

    
#set ($componentList = ${model.getComponents()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if (!$component.isConfigExcluded())
#if ($utils.getTagPrefix($component.name) == $shortname)
    
        $utils.getTagName($component.name)
        
            $component.type
#if ($component.rendererType)
#if (!($component.rendererType == ""))
            $component.rendererType
#end
#end
#if ($component.tagHandler)
            $component.tagHandler
#end
        
    
#end
#end
#end
#end

   
#set ($componentList = ${model.getConverters()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if ($component.converterId)
#if ($utils.getTagPrefix($component.name) == $shortname) 
    
        $utils.getTagName($component.name)
        
            $component.converterId
#if ($component.tagHandler)
            $component.tagHandler
#end
        
    
#end
#end
#end
#end

   
#set ($componentList = ${model.getValidators()})
#foreach( $component in $componentList )
#if ($modelIds.contains($component.modelId) 
    && ($component.name))
#if ($component.validatorId)
#if ($utils.getTagPrefix($component.name) == $shortname)
    
        $utils.getTagName($component.name)
        
            $component.validatorId
#if ($component.tagHandler)
            $component.tagHandler
#end
        
    
#end
#end
#end
#end
    
   
#set ($tagList = $model.getTags())
#foreach( $tag in $tagList )
#if ($modelIds.contains($tag.modelId))
#if ($tag.tagHandler)
#if ($utils.getTagPrefix($tag.name) == $shortname)
   
      $utils.getTagName($tag.name)
      $tag.tagHandler
   
#end
#end
#end
#end






© 2015 - 2025 Weber Informatics LLC | Privacy Policy