Uses of Class
org.apache.torque.generator.qname.QualifiedName

Packages that use QualifiedName
org.apache.torque.generator.configuration.controller This package contains the classes for reading the control configuration of the Torque generator units of generation. 
org.apache.torque.generator.configuration.outlet This package contains the classes for reading the outlet mappings for torque-generator's units of generation. 
org.apache.torque.generator.control This package implements the torque generator Controller . 
org.apache.torque.generator.option This package contains classes handling options. 
org.apache.torque.generator.outlet This package defines torque generator outlets which produce output snippets from the source. 
org.apache.torque.generator.outlet.copy This package defines and implements copy outlets. 
org.apache.torque.generator.outlet.java This package defines java outlets and provides some implementations. 
org.apache.torque.generator.qname This package contains classes which provide the implementation of a qualified name, i.e. 
org.apache.torque.generator.template This package contains the handling of template-based outlets in the Torque generator. 
org.apache.torque.generator.template.velocity This package contains the handling of velocity outlets in the Torque generator. 
org.apache.torque.generator.variable This package contains the variable handling. 
 

Uses of QualifiedName in org.apache.torque.generator.configuration.controller
 

Methods in org.apache.torque.generator.configuration.controller that return QualifiedName
 QualifiedName Output.getName()
          Returns the name by which this output can be identified.
 QualifiedName OutletReference.getName()
          Returns the qualified name of the outlet.
 

Constructors in org.apache.torque.generator.configuration.controller with parameters of type QualifiedName
OutletReference(QualifiedName name)
          Constructor.
Output(QualifiedName name)
          Constructor.
 

Uses of QualifiedName in org.apache.torque.generator.configuration.outlet
 

Methods in org.apache.torque.generator.configuration.outlet that return types with arguments of type QualifiedName
 Map<QualifiedName,Outlet> OutletConfiguration.getOutlets()
          Returns a map containing all the configured outlets, keyed by their name.
 

Methods in org.apache.torque.generator.configuration.outlet with parameters of type QualifiedName
protected abstract  Outlet OutletSaxHandler.createOutlet(QualifiedName outletName, String uri, String localName, String rawName, Attributes attributes)
           
 Outlet OutletConfiguration.getOutlet(QualifiedName name)
          Returns the outlet with the name name.
 OutletSaxHandler OutletConfigurationSaxHandler.getOutletHandler(QualifiedName outletName, String outletType)
          Returns the correct handler for a outlet tag.
 OutletSaxHandler VelocityOutletSaxHandlerFactory.getOutletSaxHandler(QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a VelocityOutletSaxHandler for reading the configuration of Velocity outlets.
 OutletSaxHandler JavaOutletSaxHandlerFactory.getOutletSaxHandler(QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a JavaOutletSaxHandler for reading the configuration of Java outlets.
 OutletSaxHandler TypedOutletSaxHandlerFactory.getOutletSaxHandler(QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a OutletSaxHandler for reading in the configuration of a outlet.
 OutletSaxHandler CopyOutletSaxHandlerFactory.getOutletSaxHandler(QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a JavaOutletSaxHandler for reading the configuration of Java outlets.
 OutletSaxHandler ReflectionOutletSaxHandlerFactory.getOutletSaxHandler(String outletType, QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a OutletSaxHandler for reading the configuration of the outlet.
 OutletSaxHandler UntypedOutletSaxHandlerFactory.getOutletSaxHandler(String outletType, QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Returns a OutletSaxHandler for reading in the configuration of a outlet.
 boolean OutletConfiguration.outletExists(QualifiedName qualifiedName)
          Returns whether a outlet for the given name exists.
 

Constructors in org.apache.torque.generator.configuration.outlet with parameters of type QualifiedName
OutletSaxHandler(QualifiedName outletName, ConfigurationProvider configurationProvider, ProjectPaths projectPaths, ConfigurationHandlers configurationHandlers)
          Creates a OutletSaxHandler.
 

Uses of QualifiedName in org.apache.torque.generator.control
 

Methods in org.apache.torque.generator.control that return QualifiedName
 QualifiedName ControllerState.getQualifiedName(String name)
          Converts a name to a QualifiedName, using the outlet namespace as default namespace is fone is given.
 

Uses of QualifiedName in org.apache.torque.generator.option
 

Methods in org.apache.torque.generator.option that return QualifiedName
 QualifiedName OptionImpl.getQualifiedName()
          Returns the qualified name of the option.
 QualifiedName Option.getQualifiedName()
          Returns the qualified name of the option.
 

Methods in org.apache.torque.generator.option that return types with arguments of type QualifiedName
 Map<QualifiedName,Option> Options.getGlobalScope()
          Returns a map containing all options in the global scope.
 Collection<QualifiedName> Options.keySet()
          Returns all options in a set.
 

Methods in org.apache.torque.generator.option with parameters of type QualifiedName
 boolean Options.containsKey(QualifiedName key)
          Checks if an option with the given key exists in any scope.
 Option Options.getInHierarchy(QualifiedName key)
          Returns the value of the option which is closest in Hierarchy.
 

Constructors in org.apache.torque.generator.option with parameters of type QualifiedName
OptionImpl(QualifiedName qualifiedName, Object value)
          Constructs an OptionImpl from a QualifiedaName and a value.
 

Uses of QualifiedName in org.apache.torque.generator.outlet
 

Methods in org.apache.torque.generator.outlet that return QualifiedName
 QualifiedName OutletImpl.getName()
           
 QualifiedName Outlet.getName()
          Returns the name of the Template.
 

Constructors in org.apache.torque.generator.outlet with parameters of type QualifiedName
OutletImpl(QualifiedName name)
          Constructs a OutletImpl with the given name.
 

Uses of QualifiedName in org.apache.torque.generator.outlet.copy
 

Constructors in org.apache.torque.generator.outlet.copy with parameters of type QualifiedName
CopyOutlet(QualifiedName name, ConfigurationProvider configurationProvider, String path)
          Constructs a new CopyOutlet.
 

Uses of QualifiedName in org.apache.torque.generator.outlet.java
 

Constructors in org.apache.torque.generator.outlet.java with parameters of type QualifiedName
CamelbackOutlet(QualifiedName qualifiedName)
          Constructor.
ConstantNameOutlet(QualifiedName qualifiedName)
          Constructor.
JavadocOutlet(QualifiedName qualifiedName)
          Constructor.
JavaFilenameOutlet(QualifiedName qualifiedName)
          Constructor.
ModifySourcenameOutlet(QualifiedName qualifiedName)
          Constructor.
NewlineOutlet(QualifiedName name)
          Constructor.
OptionOutlet(QualifiedName name)
          Constructor.
OutletWithoutMergepoints(QualifiedName name)
          Constructs a OutletWithoutMergepoints with the given name.
PackageToPathOutlet(QualifiedName qualifiedName)
          Constructor for use in child classes.
StringInputOutlet(QualifiedName qualifiedName)
          Constructs a singleInputOutlet.
XmlOutlet(QualifiedName name)
          Constructor.
 

Uses of QualifiedName in org.apache.torque.generator.qname
 

Methods in org.apache.torque.generator.qname that return QualifiedName
 QualifiedName QualifiedNameMap.getKeyInHierarchy(QualifiedName key)
          Returns the most specific key in the map which is visible for the provided key.
 

Methods in org.apache.torque.generator.qname that return types with arguments of type QualifiedName
 Set<Map.Entry<QualifiedName,T>> QualifiedNameMap.entrySet()
          Returns all Entries in this map.
 Set<QualifiedName> QualifiedNameMap.keySet()
          Returns all keys of the map.
 

Methods in org.apache.torque.generator.qname with parameters of type QualifiedName
 T QualifiedNameMap.getInHierarchy(QualifiedName key)
          Returns the most specific entry in the map which is visible for the provided key.
 QualifiedName QualifiedNameMap.getKeyInHierarchy(QualifiedName key)
          Returns the most specific key in the map which is visible for the provided key.
 T QualifiedNameMap.getMoreSpecific(T object1, QualifiedName qualifiedName1, T object2, QualifiedName qualifiedName2)
          Returns the more specific object out of two objects (the object which hides the other object).
 T QualifiedNameMap.put(QualifiedName key, T value)
          Creates or overwrites a mapping in the map.
 

Method parameters in org.apache.torque.generator.qname with type arguments of type QualifiedName
 void QualifiedNameMap.putAll(Map<? extends QualifiedName,? extends T> toPut)
          Creates or overrides mappings for all the mappings in the supplied map.
 

Constructor parameters in org.apache.torque.generator.qname with type arguments of type QualifiedName
QualifiedNameMap(Map<? extends QualifiedName,? extends T> map)
          Constructs a shallow copy of the supplied map.
 

Uses of QualifiedName in org.apache.torque.generator.template
 

Constructors in org.apache.torque.generator.template with parameters of type QualifiedName
TemplateOutletImpl(QualifiedName name, ConfigurationProvider configurationProvider, String path, String encoding, TemplateFilter templateFilter)
          Constructs a TemplateOutletImpl with the given name.
 

Uses of QualifiedName in org.apache.torque.generator.template.velocity
 

Constructors in org.apache.torque.generator.template.velocity with parameters of type QualifiedName
VelocityOutlet(QualifiedName name, ConfigurationProvider configurationProvider, String path, String encoding)
          Constructs a new VelocityTemplateOutlet.
 

Uses of QualifiedName in org.apache.torque.generator.variable
 

Methods in org.apache.torque.generator.variable that return QualifiedName
 QualifiedName Variable.getName()
          Returns the name of the variable.
 

Methods in org.apache.torque.generator.variable with parameters of type QualifiedName
 Variable VariableStore.getInHierarchy(QualifiedName key)
          Returns the most specific variable which is visible from the key's namespace and has the same name as the key's name.
 

Constructors in org.apache.torque.generator.variable with parameters of type QualifiedName
Variable(QualifiedName name, Object value, Variable.Scope scope)
          Constructor.
 



Copyright © 2000-2012 The Apache Software Foundation. All Rights Reserved.