Expose getBaseSkin method from Skin as public API
-------------------------------------------------
Key: TRINIDAD-2162
URL: https://issues.apache.org/jira/browse/TRINIDAD-2162
Project: MyFaces Trinidad
Issue Type: Improvement
Components: Skinning
Reporter: Anand V Nath
Priority: Minor
Currently base skin is hidden in the internal API of
org.apache.myfaces.trinidadinternal.skin.SkinExtension. Exposing base skin from
org.apache.myfaces.trinidad.skin.Skin will help in accessing the base skin from
public API.
For this proposed change is to add a null implementation for getBaseSkin method
in Skin class as
/**
* Returns the parent skin.
* @return
*/
public Skin getBaseSkin()
{
return null;
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira