You are viewing a plain text version of this content. The canonical link for it is here.
Posted to adffaces-issues@incubator.apache.org by "Matthias Weßendorf (JIRA)" <ad...@incubator.apache.org> on 2007/02/23 19:27:07 UTC

[jira] Updated: (ADFFACES-296) plugins: add hooks for custom code to GenerateJspTaglibsMojo

     [ https://issues.apache.org/jira/browse/ADFFACES-296?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matthias Weßendorf updated ADFFACES-296:
----------------------------------------

        Fix Version/s: 1.0.0-incubating-plugins
    Affects Version/s: 1.0.0-incubating-plugins

> plugins: add hooks for custom code to GenerateJspTaglibsMojo
> ------------------------------------------------------------
>
>                 Key: ADFFACES-296
>                 URL: https://issues.apache.org/jira/browse/ADFFACES-296
>             Project: MyFaces ADF-Faces
>          Issue Type: Improvement
>          Components: Plugins
>    Affects Versions: 1.0.0-incubating-plugins
>            Reporter: Gabrielle Crawford
>         Assigned To: Gabrielle Crawford
>            Priority: Trivial
>             Fix For: 1.0.0-incubating-plugins
>
>
> 1] add 3 protected methods which are no-ops in Trinidad. These are each called once in the class.
> // hook for custom component tag java imports
>  protected void addCustomComponentTagHandlerImports(
>      Set           imports,
>      ComponentBean component)
>  {
>  } 
>  // hook for custom component tag java content
>  protected void writeCustomComponentTagHandlerContent(
>      PrettyWriter  out,
>      ComponentBean component) throws IOException
>  {
>  }
>  // hook for custom component descriptor content
>  protected void writeCustomComponentTagDescriptorContent(
>      XMLStreamWriter  stream,
>      ComponentBean    component) throws XMLStreamException
>  {
>  }
> 2] Change _writeTagAttribute to be protected
> 3] All the injected property params are null when subclassing, so I need to make them protected instead of private and set them from my subclass.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.