/*
* Returns a new file lock object with the given parameters.
*
* @param channel the file channel hosting the lock. @param position the
* start position of the lock, in bytes @param size the length of the lock,
* in bytes @param shared whether this lock is shared (true) or exclusive
* (false)
*/
super(channel, position, size, shared);