Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleConstructing BasicId
   /**
     *  Creates a new <code>BasicId</code>BasicId.
     *
     *  @param authority the authority for this Id
     *  @param namespace the namespace for this Id
     *  @param identifier the identifier for this Id
     *  @throws org.osid.NullArgumentException null argument provided
     */

    public BasicId(String authority, String namespace, String identifier);

...

Code Block
titleConstructing BasicId
   /**
     *  Creates a new <code>URNId</code>URNId.
     *
     *  @param authority the authority for this Id
     *  @param namespace the namespace for this Id
     *  @param identifier the identifier for this Id
     *  @throws org.osid.NullArgumentException null argument provided
     */

    public URNId(String authority, String namespace, String identifier);

...