uk.co.badgersinfoil.metaas.dom
Interface ASMetaTag.Param
- Enclosing interface:
- ASMetaTag
public static interface ASMetaTag.Param
A 'named parameter' within a metatag.
For example the following tag,
[Duplicatable(false, defaultValue="circular")]
has two parameters, the second of which is a named parameter.
If ASMetaTag.getParams()
were called on the object
representing that example, the second value in the list
would be an ASMetaTag.Param instance which would return
"defaultValue" for getName() and the String "circular" for
getValue()
Method Summary |
java.lang.String |
getName()
|
java.lang.Object |
getValue()
The type of the returned
value will be one of,
String
Integer
Boolean
|
getName
java.lang.String getName()
getValue
java.lang.Object getValue()
- The type of the returned
value will be one of,
Copyright © 2006-2007 David Holroyd. All Rights Reserved.