Browse Source

Improve Javadoc for typeHint parameter

Link to an example type constant.

Change-Id: I214ab834fa02901a38e6048a94a5224b30c5d93f
Signed-off-by: Robin Stocker <robin@nibor.org>
tags/v3.2.0.201312181205-r
Robin Stocker 10 years ago
parent
commit
04f19353fd

+ 4
- 3
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java View File

* @param objectId * @param objectId
* identity of the object to open. * identity of the object to open.
* @param typeHint * @param typeHint
* hint about the type of object being requested;
* {@link ObjectReader#OBJ_ANY} if the object type is not known,
* or does not matter to the caller.
* hint about the type of object being requested, e.g.
* {@link Constants#OBJ_BLOB}; {@link ObjectReader#OBJ_ANY} if
* the object type is not known, or does not matter to the
* caller.
* @return a {@link ObjectLoader} for accessing the object. * @return a {@link ObjectLoader} for accessing the object.
* @throws MissingObjectException * @throws MissingObjectException
* the object does not exist. * the object does not exist.

+ 9
- 9
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java View File

* @param objectId * @param objectId
* identity of the object to test for existence of. * identity of the object to test for existence of.
* @param typeHint * @param typeHint
* hint about the type of object being requested;
* {@link #OBJ_ANY} if the object type is not known, or does not
* matter to the caller.
* hint about the type of object being requested, e.g.
* {@link Constants#OBJ_BLOB}; {@link #OBJ_ANY} if the object
* type is not known, or does not matter to the caller.
* @return true if the specified object is stored in this database. * @return true if the specified object is stored in this database.
* @throws IncorrectObjectTypeException * @throws IncorrectObjectTypeException
* typeHint was not OBJ_ANY, and the object's actual type does * typeHint was not OBJ_ANY, and the object's actual type does
* @param objectId * @param objectId
* identity of the object to open. * identity of the object to open.
* @param typeHint * @param typeHint
* hint about the type of object being requested;
* {@link #OBJ_ANY} if the object type is not known, or does not
* matter to the caller.
* hint about the type of object being requested, e.g.
* {@link Constants#OBJ_BLOB}; {@link #OBJ_ANY} if the object
* type is not known, or does not matter to the caller.
* @return a {@link ObjectLoader} for accessing the object. * @return a {@link ObjectLoader} for accessing the object.
* @throws MissingObjectException * @throws MissingObjectException
* the object does not exist. * the object does not exist.
* @param objectId * @param objectId
* identity of the object to open. * identity of the object to open.
* @param typeHint * @param typeHint
* hint about the type of object being requested;
* {@link #OBJ_ANY} if the object type is not known, or does not
* matter to the caller.
* hint about the type of object being requested, e.g.
* {@link Constants#OBJ_BLOB}; {@link #OBJ_ANY} if the object
* type is not known, or does not matter to the caller.
* @return size of object in bytes. * @return size of object in bytes.
* @throws MissingObjectException * @throws MissingObjectException
* the object does not exist. * the object does not exist.

+ 4
- 3
org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java View File

* @param objectId * @param objectId
* identity of the object to open. * identity of the object to open.
* @param typeHint * @param typeHint
* hint about the type of object being requested;
* {@link ObjectReader#OBJ_ANY} if the object type is not known,
* or does not matter to the caller.
* hint about the type of object being requested, e.g.
* {@link Constants#OBJ_BLOB}; {@link ObjectReader#OBJ_ANY} if
* the object type is not known, or does not matter to the
* caller.
* @return a {@link ObjectLoader} for accessing the object. * @return a {@link ObjectLoader} for accessing the object.
* @throws MissingObjectException * @throws MissingObjectException
* the object does not exist. * the object does not exist.

Loading…
Cancel
Save