Uses of Interface
org.apache.felix.scrplugin.tags.JavaTag

Packages that use JavaTag
org.apache.felix.scrplugin   
org.apache.felix.scrplugin.helper   
org.apache.felix.scrplugin.om   
org.apache.felix.scrplugin.tags   
org.apache.felix.scrplugin.tags.annotation Extracting SCR tags from source file declared as Java 1.5 annotations. 
org.apache.felix.scrplugin.tags.annotation.defaulttag SCR plugin annotation tag provider default implementation for annotations provided in package org.apache.felix.scrplugin.annotations
org.apache.felix.scrplugin.tags.annotation.sling   
org.apache.felix.scrplugin.tags.cl   
org.apache.felix.scrplugin.tags.qdox   
 

Uses of JavaTag in org.apache.felix.scrplugin
 

Methods in org.apache.felix.scrplugin with parameters of type JavaTag
protected  void SCRDescriptorGenerator.addInterfaces(Service service, JavaTag serviceTag, JavaClassDescription description)
          Recursively add interfaces to the service.
protected  Component SCRDescriptorGenerator.createComponent(JavaClassDescription description, JavaTag componentTag, MetaData metaData, IssueLog iLog)
          Create a component for the java class description.
protected  OCD SCRDescriptorGenerator.doComponent(JavaTag tag, Component component, MetaData metaData, IssueLog iLog)
          Fill the component object with the information from the tag.
protected  void SCRDescriptorGenerator.doReference(JavaTag reference, String name, Component component, String type)
           
protected  void SCRDescriptorGenerator.doServices(JavaTag[] services, Component component, JavaClassDescription description)
          Process the service annotations
static boolean SCRDescriptorGenerator.getBoolean(JavaTag tag, String name, boolean defaultValue)
           
protected  JavaField SCRDescriptorGenerator.getReferencedField(JavaTag tag, String ref)
           
protected  String SCRDescriptorGenerator.getReferenceName(JavaTag reference, String defaultName)
           
protected  void SCRDescriptorGenerator.testReference(Map<String,Object[]> references, JavaTag reference, String defaultName, boolean isInspectedClass)
          Test a newly found reference
 

Constructors in org.apache.felix.scrplugin with parameters of type JavaTag
SCRDescriptorException(String message, JavaTag tag)
           
SCRDescriptorException(String message, JavaTag tag, Throwable cause)
           
 

Uses of JavaTag in org.apache.felix.scrplugin.helper
 

Fields in org.apache.felix.scrplugin.helper declared as JavaTag
 JavaTag PropertyHandler.PropertyDescription.propertyTag
           
 

Methods in org.apache.felix.scrplugin.helper with parameters of type JavaTag
protected  String PropertyHandler.getPropertyName(JavaTag tag, JavaField field)
          Return the name of the property.
protected  String[] PropertyHandler.getPropertyValueRef(JavaTag tag, Property prop, String valueRef)
           
protected  JavaField PropertyHandler.getReferencedField(JavaTag tag, String ref)
           
protected  void PropertyHandler.processProperty(JavaTag tag, String name, JavaField javaField, IssueLog iLog)
          Process a property.
protected  void PropertyHandler.setPropertyValueRef(JavaTag tag, Property property, String valueRef)
           
 void PropertyHandler.testProperty(JavaTag property, JavaField field, boolean isInspectedClass)
          Test if there is already a property with the same name.
 

Constructors in org.apache.felix.scrplugin.helper with parameters of type JavaTag
PropertyHandler.PropertyDescription(JavaTag p, JavaField f)
           
 

Uses of JavaTag in org.apache.felix.scrplugin.om
 

Fields in org.apache.felix.scrplugin.om declared as JavaTag
protected  JavaTag AbstractObject.tag
           
 

Methods in org.apache.felix.scrplugin.om that return JavaTag
 JavaTag AbstractObject.getJavaTag()
           
 

Constructors in org.apache.felix.scrplugin.om with parameters of type JavaTag
AbstractObject(JavaTag tag)
           
Component(JavaTag t)
          Constructor from java source.
Interface(JavaTag t)
          Constructor from java source.
Property(JavaTag t)
          Constructor from java source.
Reference(JavaTag t, JavaClassDescription desc)
          Constructor from java source.
 

Uses of JavaTag in org.apache.felix.scrplugin.tags
 

Methods in org.apache.felix.scrplugin.tags that return JavaTag
 JavaTag JavaClassDescription.getTagByName(String name)
          Get the java class tag with the name.
 JavaTag JavaField.getTagByName(String name)
          Return the given tag.
 JavaTag[] JavaClassDescription.getTagsByName(String name, boolean inherited)
          Get all class tags with this name.
 

Uses of JavaTag in org.apache.felix.scrplugin.tags.annotation
 

Classes in org.apache.felix.scrplugin.tags.annotation that implement JavaTag
 class AbstractTag
          Description of a java tag for components.
 

Methods in org.apache.felix.scrplugin.tags.annotation that return JavaTag
 JavaTag AnnotationJavaClassDescription.getTagByName(String name)
           
 JavaTag AnnotationJavaField.getTagByName(String name)
           
 JavaTag[] AnnotationJavaClassDescription.getTagsByName(String name, boolean inherited)
           
 

Methods in org.apache.felix.scrplugin.tags.annotation that return types with arguments of type JavaTag
 List<JavaTag> AnnotationTagProviderManager.getTags(com.thoughtworks.qdox.model.Annotation annotation, AnnotationJavaClassDescription description)
          Converts a java annotation to JavaTag if a mapping can be found.
 List<JavaTag> AnnotationTagProviderManager.getTags(com.thoughtworks.qdox.model.Annotation annotation, AnnotationJavaClassDescription description, JavaField field)
          Converts a java annotation to JavaTag if a mapping can be found.
 List<JavaTag> AnnotationTagProvider.getTags(com.thoughtworks.qdox.model.Annotation pAnnotation, AnnotationJavaClassDescription description, JavaField field)
          Maps a annotation to one or many JavaTag implementations.
 

Uses of JavaTag in org.apache.felix.scrplugin.tags.annotation.defaulttag
 

Classes in org.apache.felix.scrplugin.tags.annotation.defaulttag that implement JavaTag
 class ComponentTag
          Description of a java tag for components.
 class PropertyTag
          Description of a java tag for components.
 class ReferenceTag
          Description of a java tag for components.
 class ServiceTag
          Description of a java tag for components.
 

Methods in org.apache.felix.scrplugin.tags.annotation.defaulttag that return types with arguments of type JavaTag
 List<JavaTag> DefaultAnnotationTagProvider.getTags(com.thoughtworks.qdox.model.Annotation annotation, AnnotationJavaClassDescription description, JavaField field)
           
 

Uses of JavaTag in org.apache.felix.scrplugin.tags.annotation.sling
 

Classes in org.apache.felix.scrplugin.tags.annotation.sling that implement JavaTag
 class SlingFilterComponentTag
          Description of a java tag for components.
 class SlingFilterServiceTag
          Description of a java tag for components.
 class SlingServletComponentTag
          Description of a java tag for components.
 class SlingServletPropertyTag
          A property tag.
 class SlingServletServiceTag
          Description of a java tag for components.
 

Methods in org.apache.felix.scrplugin.tags.annotation.sling that return types with arguments of type JavaTag
 List<JavaTag> SlingAnnotationTagProvider.getTags(com.thoughtworks.qdox.model.Annotation annotation, AnnotationJavaClassDescription description, JavaField field)
           
 

Uses of JavaTag in org.apache.felix.scrplugin.tags.cl
 

Classes in org.apache.felix.scrplugin.tags.cl that implement JavaTag
 class ClassLoaderJavaTag
          ClassLoaderJavaTag.java...
 

Fields in org.apache.felix.scrplugin.tags.cl declared as JavaTag
protected static JavaTag[] ClassLoaderJavaClassDescription.EMPTY_TAGS
           
 

Methods in org.apache.felix.scrplugin.tags.cl that return JavaTag
 JavaTag ClassLoaderJavaField.getTagByName(String name)
           
 JavaTag ClassLoaderJavaClassDescription.getTagByName(String name)
           
 JavaTag[] ClassLoaderJavaClassDescription.getTagsByName(String name, boolean inherited)
           
 

Uses of JavaTag in org.apache.felix.scrplugin.tags.qdox
 

Classes in org.apache.felix.scrplugin.tags.qdox that implement JavaTag
 class QDoxJavaTag
          QDoxJavaTag.java...
 

Methods in org.apache.felix.scrplugin.tags.qdox that return JavaTag
 JavaTag QDoxJavaClassDescription.getTagByName(String name)
           
 JavaTag QDoxJavaField.getTagByName(String name)
           
 JavaTag[] QDoxJavaClassDescription.getTagsByName(String name, boolean inherited)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.