Class R_OSGiNamespace
- java.lang.Object
- 
- org.eclipse.ecf.core.identity.Namespace
- 
- org.eclipse.ecf.provider.r_osgi.identity.R_OSGiNamespace
 
 
- 
- All Implemented Interfaces:
- Serializable,- org.eclipse.core.runtime.IAdaptable
 - Direct Known Subclasses:
- R_OSGiWSNamespace,- R_OSGiWSSNamespace
 
 public class R_OSGiNamespace extends Namespace The R-OSGi default transport namespace (r-osgi://).- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringNAMEstatic StringNAMESPACE_SCHEMEthe namespace scheme.- 
Fields inherited from class org.eclipse.ecf.core.identity.NamespaceSCHEME_SEPARATOR
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description R_OSGiNamespace()constructor.protectedR_OSGiNamespace(String name, String description)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IDcreateInstance(Object[] parameters)create a new ID within this namespace.static NamespacegetDefault()get the singleton instance of this namespace.StringgetScheme()get the scheme of this namespace.Class<?>[][]getSupportedParameterTypes()Get the supported parameter types for IDs created via subsequent calls toNamespace.createInstance(Object[]).String[]getSupportedSchemes()get all supported schemes.- 
Methods inherited from class org.eclipse.ecf.core.identity.Namespaceequals, getAdapter, getCompareToForObject, getDescription, getHashCodeForID, getInitStringFromExternalForm, getName, getNameForID, hashCode, initialize, testIDEquals, toExternalForm, toString
 
- 
 
- 
- 
- 
Field Detail- 
NAMEpublic static final String NAME - See Also:
- Constant Field Values
 
 - 
NAMESPACE_SCHEMEpublic static final String NAMESPACE_SCHEME the namespace scheme.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getDefaultpublic static Namespace getDefault() get the singleton instance of this namespace.- Returns:
- the instance.
 
 - 
createInstancepublic ID createInstance(Object[] parameters) throws IDCreateException create a new ID within this namespace.- Specified by:
- createInstancein class- Namespace
- Parameters:
- parameters- the parameter to pass to the ID.
- Returns:
- the new ID
- Throws:
- IDCreateException- if the creation fails.
- See Also:
- Namespace.createInstance(java.lang.Object[])
 
 - 
getSchemepublic String getScheme() get the scheme of this namespace.- Specified by:
- getSchemein class- Namespace
- Returns:
- the scheme.
- See Also:
- Namespace.getScheme()
 
 - 
getSupportedSchemespublic String[] getSupportedSchemes() get all supported schemes.- Overrides:
- getSupportedSchemesin class- Namespace
- Returns:
- an array of supported schemes.
- See Also:
- Namespace.getSupportedSchemes()
 
 - 
getSupportedParameterTypespublic Class<?>[][] getSupportedParameterTypes() Description copied from class:NamespaceGet the supported parameter types for IDs created via subsequent calls toNamespace.createInstance(Object[]). Callers may use this method to determine the available parameter types, and then create and pass in conforming Object arrays to toNamespace.createInstance(Object[]).
 An empty two-dimensional array (new Class[0][0]) is the default returned by this abstract superclass. This means that the Object [] passed toNamespace.createInstance(Object[])will be ignored.
 Subsclasses should override this method to specify the parameters that they will accept in calls toNamespace.createInstance(Object[]). The rows of the returned Class array are the acceptable types for a given invocation of createInstance.
 Consider the following example:public Class[][] getSupportedParameterTypes() { return new Class[][] { { String.class }, { String.class, String.class } }; }The above means that there are two acceptable values for the Object [] passed intoNamespace.createInstance(Object[]): 1) a single String, and 2) two Strings. These would therefore be acceptable as input to createInstance:ID newID1 = namespace.createInstance(new Object[] { "Hello" }); ID newID2 = namespace.createInstance(new Object[] { "Hello", "There"}};- Overrides:
- getSupportedParameterTypesin class- Namespace
- Returns:
- Class [][] an array of class []s. Rows of the returned
         two-dimensional array define the acceptable parameter types for a
         single call to Namespace.createInstance(Object[]). If zero-length Class arrays are returned (i.e. Class[0][0]), then Object [] parameters toNamespace.createInstance(Object[])will be ignored.
 
 
- 
 
-