org.apache.myfaces.debug
Interface LocationAndTagAttributeAware
- All Superinterfaces:
- LocationAware
public interface LocationAndTagAttributeAware
- extends LocationAware
Identification inferface for types that know about Location
and XML attribute name/value pair.
- Location - location instance - see
LocationAware
- expressionString - expression String
Expression.getExpressionString()
- qName - the qualified name for attribute
TagAttribute.getQName()
If type implements this interface, we can say that it knows where instance implementing this
interface is located in facelets view (line/column)
and what XML attribute (name/value pair) makes it.
Also you can think about this type as about ligthweight version of TagAttributeAware
for cases, where full TagAttribute instance is not available
- Author:
- martinkoci
getExpressionString
String getExpressionString()
- Returns:
- expression string, for example "#{bean.actionMethod}" or "success"
getQName
String getQName()
- Returns:
- qName of XML attribute, for example "action" or "value"
Copyright © 2012 The Apache Software Foundation. All Rights Reserved.