1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Update Javadoc

This commit is contained in:
Martin Oberhuber 2008-01-23 17:44:38 +00:00
parent 4a8df946f2
commit 3bc0f8aa92

View file

@ -145,9 +145,14 @@ public interface IHostFilePermissions {
public void setGroupOwner(String group);
/**
* Overriding Object.clone()
* Creates and returns a copy of this object, as specified
* by the {@link Object#clone()} contract.
*
* Each implementer of the IHostFilePermission API must properly implement
* this method and implement the {@link Cloneable} interface.
* @return the cloned object
* @throws CloneNotSupportedException
* @see Object#clone()
*/
public Object clone() throws CloneNotSupportedException;
}