jvanzyl 2002/11/25 10:12:56
Modified: src/java/org/apache/maven/project/repository
CvsRepository.java
Log:
o fixing checkstyle violations
Revision Changes Path
1.4 +36 -1
jakarta-turbine-maven/src/java/org/apache/maven/project/repository/CvsRepository.java
Index: CvsRepository.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/repository/CvsRepository.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- CvsRepository.java 24 Nov 2002 19:00:39 -0000 1.3
+++ CvsRepository.java 25 Nov 2002 18:12:56 -0000 1.4
@@ -66,15 +66,28 @@
public class CvsRepository
extends AbstractRepository
{
+ /** CVS method. */
private String method;
+
+ /** CVS user. */
private String user;
+
+ /** CVS password. */
private String password;
+
+ /** CVS hostname. */
private String hostname;
+
+ /** CVS path. */
private String path;
+
+ /** CVS type. */
private String type;
/**
* Sets the method attribute of the Repository object
+ *
+ * @param method The CVS transport method
*/
public void setMethod( String method )
{
@@ -83,6 +96,8 @@
/**
* Gets the method attribute of the Repository object
+ *
+ * @return CVS transport method.
*/
public String getMethod()
{
@@ -91,6 +106,8 @@
/**
* Sets the user attribute of the Repository object
+ *
+ * @param user CVS user.
*/
public void setUser( String user )
{
@@ -99,6 +116,8 @@
/**
* Gets the user attribute of the Repository object
+ *
+ * @return CVS user.
*/
public String getUser()
{
@@ -107,6 +126,8 @@
/**
* Sets the password attribute of the Repository object
+ *
+ * @param password CVS password.
*/
public void setPassword( String password )
{
@@ -115,6 +136,8 @@
/**
* Gets the password attribute of the Repository object
+ *
+ * @return CVS password.
*/
public String getPassword()
{
@@ -123,6 +146,8 @@
/**
* Sets the hostname attribute of the Repository object
+ *
+ * @param hostname CVS hostname.
*/
public void setHostname( String hostname )
{
@@ -131,6 +156,8 @@
/**
* Gets the hostname attribute of the Repository object
+ *
+ * @return CVS hostname.
*/
public String getHostname()
{
@@ -139,6 +166,8 @@
/**
* Sets the path attribute of the Repository object
+ *
+ * @param path CVS path.
*/
public void setPath( String path )
{
@@ -147,6 +176,8 @@
/**
* Gets the path attribute of the Repository object
+ *
+ * @return CVS path.
*/
public String getPath()
{
@@ -155,6 +186,8 @@
/**
* Sets the type attribute of the Repository object
+ *
+ * @param type Repository type.
*/
public void setType( String type )
{
@@ -163,6 +196,8 @@
/**
* Gets the type attribute of the Repository object
+ *
+ * @return Repository type.
*/
public String getType()
{
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>