Uses of Interface
org.apache.myfaces.trinidadinternal.style.StyleContext

Packages that use StyleContext
org.apache.myfaces.trinidadinternal.image   
org.apache.myfaces.trinidadinternal.renderkit.core   
org.apache.myfaces.trinidadinternal.skin   
org.apache.myfaces.trinidadinternal.style   
org.apache.myfaces.trinidadinternal.style.cache   
org.apache.myfaces.trinidadinternal.style.util   
org.apache.myfaces.trinidadinternal.style.xml.parse   
org.apache.myfaces.trinidadinternal.ui   
org.apache.myfaces.trinidadinternal.uinode   
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.image
 

Methods in org.apache.myfaces.trinidadinternal.image that return StyleContext
 StyleContext ImageContext.getStyleContext()
          Returns a StyleContext that can be used to look up styles while rendering images with this ImageContext.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.renderkit.core
 

Methods in org.apache.myfaces.trinidadinternal.renderkit.core that return StyleContext
 StyleContext CoreRenderingContext.getStyleContext()
          Get an interface that can be used for style lookups and generation.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.skin
 

Methods in org.apache.myfaces.trinidadinternal.skin with parameters of type StyleContext
protected  StyleSheetDocument SkinStyleProvider.createStyleSheetDocument(StyleContext context)
          Override of FileSystemStyleCache.createStyleSheetDocument().
 StyleSheetDocument SkinImpl.getStyleSheetDocument(StyleContext context)
          Returns the StyleSheetDocument object which defines all of the styles for this Skin, including any styles that are contributed by skin-additions.
 StyleSheetDocument SkinExtension.getStyleSheetDocument(StyleContext context)
          Override of Skin.getStyleSheetDocument() which merges styles from the base Skin's style sheet and the SkinExtension's style sheet.
 StyleSheetDocument RequestSkinWrapper.getStyleSheetDocument(StyleContext styleContext)
          Implementation of DocumentProviderSkin.getStyleSheetDocument().
 StyleSheetDocument DocumentProviderSkin.getStyleSheetDocument(StyleContext styleContext)
          Returns the StyleSheetDocument for the specified context.
protected  java.lang.String SkinStyleProvider.getTargetStyleSheetName(StyleContext context, StyleSheetDocument document)
          Override of FileSystemStyleCache.getTargetStyleSheetName().
protected  boolean SkinStyleProvider.hasSourceDocumentChanged(StyleContext context)
          Override of FileSystemStyleCache.hasSourceDocumentChanged() which checks for changes to the Skin's style sheet.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.style
 

Methods in org.apache.myfaces.trinidadinternal.style with parameters of type StyleContext
 java.lang.String StyleProvider.getContentStyleType(StyleContext context)
          Returns the mime type (for example, "text/css") of the styles defined by the StyleProvider.
 java.util.concurrent.ConcurrentMap<java.lang.String,org.apache.myfaces.trinidad.skin.Icon> StyleProvider.getIcons(StyleContext context)
          Returns a map of icon names to Icon instances.
 java.util.Map<java.lang.String,java.lang.String> StyleProvider.getShortStyleClasses(StyleContext context)
          Returns a Map which maps style class names to equivalent shorter names.
 java.util.concurrent.ConcurrentMap<java.lang.Object,java.lang.Object> StyleProvider.getSkinProperties(StyleContext context)
          Returns a map of skin property keys to skin property Object instances.
 org.apache.myfaces.trinidad.style.Styles StyleProvider.getStyles(StyleContext context)
          Return the Styles object that is attached to this StyleProvider.
 java.util.List<java.lang.String> StyleProvider.getStyleSheetURIs(StyleContext context)
          Returns the URI of the CSS style sheet to use for the end user environment specified via the StyleContext.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.style.cache
 

Methods in org.apache.myfaces.trinidadinternal.style.cache with parameters of type StyleContext
protected  StyleSheetDocument FileSystemStyleCache.createStyleSheetDocument(StyleContext context)
          Creates the StyleSheetDocument for this StyleProvider.
 java.lang.String FileSystemStyleCache.getContentStyleType(StyleContext context)
          Returns the mime type for the styles provided by this FileSystemStyleCache - "text/css".
 java.util.concurrent.ConcurrentMap<java.lang.String,org.apache.myfaces.trinidad.skin.Icon> FileSystemStyleCache.getIcons(StyleContext context)
          Implementation of StyleProvider.getIcons()
 java.util.Map<java.lang.String,java.lang.String> FileSystemStyleCache.getShortStyleClasses(StyleContext context)
          Returns a Map which maps style class names to equivalent shorter names.
 java.util.concurrent.ConcurrentMap<java.lang.Object,java.lang.Object> FileSystemStyleCache.getSkinProperties(StyleContext context)
          Implementation of StyleProvider.getSkinProperties()
 org.apache.myfaces.trinidad.style.Styles FileSystemStyleCache.getStyles(StyleContext context)
          Implementation of StyleProvider.getStyles().
 java.util.List<java.lang.String> FileSystemStyleCache.getStyleSheetURIs(StyleContext context)
          Implementation of StyleCache.getStyleSheetURI().
protected  java.lang.String FileSystemStyleCache.getTargetStyleSheetName(StyleContext context, StyleSheetDocument document)
          Returns the name to use for the generated style sheet file .
protected  boolean FileSystemStyleCache.hasSourceDocumentChanged(StyleContext context)
          Tests whether the source style sheet files have been modified since the last call to createStyleSheetDocument().
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.style.util
 

Methods in org.apache.myfaces.trinidadinternal.style.util with parameters of type StyleContext
static java.lang.String NameUtils.getContextName(StyleContext context)
          Returns name for the specified context, suitable for inclusion in a file name.
static java.lang.String NameUtils.getContextName(StyleContext context, StyleSheetDocument document)
          Returns name for the specified context, based on the actual matching style sheets in the document.
static java.lang.String ModeUtils.getCurrentMode(StyleContext context)
          returns the current mode,standards or quirks
static void CSSGenerationUtils.writeCSS(StyleContext context, java.lang.String styleSheetName, StyleNode[] styles, StyleWriterFactory writerFactory, boolean compressStyles, java.util.Map<java.lang.String,java.lang.String> shortStyleClassMap, java.lang.String[] namespacePrefixArray, java.util.Map<java.lang.String,java.lang.String> afSelectorMap)
          Converts the specified set of StyleNodes to CSS.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.style.xml.parse
 

Methods in org.apache.myfaces.trinidadinternal.style.xml.parse with parameters of type StyleContext
 java.lang.String StyleSheetDocument.getDocumentId(StyleContext sContext)
          Returns the StyleSheetDocument's id.
 java.util.Iterator<IconNode> StyleSheetDocument.getIcons(StyleContext context)
          Returns an Iterator of StyleNode objects for the specified context.
 StyleNode StyleSheetDocument.getStyleByName(StyleContext context, java.lang.String name)
          Returns the fully-resolved StyleNode for the style with the specified name.
 StyleNode StyleSheetDocument.getStyleBySelector(StyleContext context, java.lang.String selector)
          Returns the fully-resolved StyleNode for the style with the specified selector.
 java.util.Iterator<StyleNode> StyleSheetDocument.getStyles(StyleContext context)
          Returns an Iterator of StyleNode objects for the specified context.
 java.util.Iterator<StyleSheetNode> StyleSheetDocument.getStyleSheets(StyleContext context)
          Returns all StyleSheetNodes which can be applied to the specified context, sorted from lowest to highest precedence.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.ui
 

Methods in org.apache.myfaces.trinidadinternal.ui that return StyleContext
 StyleContext UIXRenderingContext.getStyleContext()
          Deprecated. Get an interface that can be used for style lookups and generation.
 

Uses of StyleContext in org.apache.myfaces.trinidadinternal.uinode
 

Methods in org.apache.myfaces.trinidadinternal.uinode that return StyleContext
 StyleContext FacesRenderingContext.getStyleContext()
          Deprecated. Get an interface that can be used for style lookups and generation.
 



Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.