Uses of Interface
org.objectweb.jonathan.model.name

Packages that use name
org.objectweb.jonathan.model DOCUMENTATION classes describing the main abstractions in Jonathan: name, naming context and binder. 
 

Uses of name in org.objectweb.jonathan.model
 

Methods in org.objectweb.jonathan.model that return name
 name naming_context.export(name name)
          The role of an export method is to create a name in a given context.
 name naming_context.resolve(name name)
          resolve is the dual operation of export: Given a name, say b.a.ref, it returns the next name in the referencing chain, in this case, a.ref.
 

Methods in org.objectweb.jonathan.model with parameters of type name
 name naming_context.export(name name)
          The role of an export method is to create a name in a given context.
 name naming_context.resolve(name name)
          resolve is the dual operation of export: Given a name, say b.a.ref, it returns the next name in the referencing chain, in this case, a.ref.
 java.lang.Object binder.bind(name name)
          The bind operation is used to, given a name, give access to the object interface it designates.