peterreilly 2005/05/24 10:18:31
Modified: src/main/org/apache/tools/ant/taskdefs/optional/unix
AbstractAccessTask.java
Log:
checkstyle javadoc
Revision Changes Path
1.14 +4 -1
ant/src/main/org/apache/tools/ant/taskdefs/optional/unix/AbstractAccessTask.java
Index: AbstractAccessTask.java
===================================================================
RCS file:
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/unix/AbstractAccessTask.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- AbstractAccessTask.java 9 Mar 2004 16:48:37 -0000 1.13
+++ AbstractAccessTask.java 24 May 2005 17:18:31 -0000 1.14
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,6 +54,7 @@
/**
* Set the file which should have its access attributes modified.
+ * @param src the file to modify
*/
public void setFile(File src) {
FileSet fs = new FileSet();
@@ -98,6 +99,8 @@
/**
* Automatically approve Unix OS's.
+ * @return true if a valid OS, for unix this is always true, otherwise
+ * use the superclasses' test (user set).
*/
protected boolean isValidOs() {
return Os.isFamily("unix") && super.isValidOs();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]