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

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




  1.1.7
   $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
#if ($property.isRequired())
         $property.isRequired()
#end
#if ($property.isMethodExpression() || $property.isMethodBinding())
#if ($property.getMethodBindingSignature())
        
#set ($sig = $property.getMethodBindingSignature())
            $sig.returnType myMethod( $sig.parameterTypesAsString )

        
#else
## This is a very special case. If a property is MethodBinding or MethodExpression
## this should have a signature. If not, for allow multiple MethodBinding
## simulate a ValueExpression and write a custom code like in 
## org.apache.myfaces.custom.suggestajax.AbstractSuggestAjaxTag
         
#end
#elseif ($property.isLiteralOnly())
         false
#else
#if ( "$!property.isRtexprvalue()" == "")
#set ($type = $utils.getClassFromFullClass($property.className))
#if ($type == "String")
         
#else
         
             $property.className
         
#end
#else
         $property.isRtexprvalue().booleanValue()
#end
#end
#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
#if ($property.isRequired())
         $property.isRequired()
#end
#if ($property.isLiteralOnly())
         false
#else
#set ($type = $utils.getClassFromFullClass($property.className))
#if ($type == "String")
         
#else
         
             $property.className
         
#end
#end
#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
#if ($property.isRequired())
         $property.isRequired()
#end
#if ($property.isLiteralOnly())
         false
#else
#set ($type = $utils.getClassFromFullClass($property.className))
#if ($type == "String")
         
#else
         
             $property.className
         
#end
#end
#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()
#set ($type = $utils.getClassFromFullClass($attribute.className))
#if ($type == "ValueExpression")
         
#else
         $attribute.isRtexprvalue()
#if ($attribute.className)         
         $attribute.className
#else
         java.lang.String
#end
#end
#if ($property.longDescription)
         
#else
         
#end
      
#end
   
#end
#end





© 2015 - 2025 Weber Informatics LLC | Privacy Policy