|
What this is
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.javacvs;
/** This class implements the cvs tag command.
* @author mkleint
*/
public class FsAnnotate extends CvsCommand {
/**
* Use head revision if a revision meeting criteria set by switches -r/-D
* (tag/date) is not found. (-f)
*/
private boolean useHeadIfNotFound;
/**
* equals the -D switch of command line cvs.
*/
private String annotateByDate;
/**
* Equals the -r switch of command-line cvs.
*/
private String annotateByRevision;
/**
* to be recursive is default behaviour of command.
*/
private boolean recursive = true;
/** Creates new FsAnnotate instance.
*/
protected FsAnnotate() {
super();
}
/**
* Getter for property useHeadIfNotFound.
* @return Value of property useHeadIfNotFound.
*/
public boolean isUseHeadIfNotFound()
{
return useHeadIfNotFound;
}
/**
* Setter for property useHeadIfNotFound.
* @param useHeadIfNotFound New value of property useHeadIfNotFound.
*/
public void setUseHeadIfNotFound(boolean useHeadIfNotFound)
{
this.useHeadIfNotFound = useHeadIfNotFound;
}
/**
* Getter for property annotateByDate.
* @return Value of property annotateByDate.
*/
public String getAnnotateByDate()
{
return annotateByDate;
}
/**
* Setter for property annotateByDate.
* @param annotateByDate New value of property annotateByDate.
*/
public void setAnnotateByDate(String annotateByDate)
{
this.annotateByDate = annotateByDate;
}
/**
* Getter for property annotateByRevision.
* @return Value of property annotateByRevision.
*/
public String getAnnotateByRevision()
{
return annotateByRevision;
}
/**
* Setter for property annotateByRevision.
* @param annotateByRevision New value of property annotateByRevision.
*/
public void setAnnotateByRevision(String annotateByRevision)
{
this.annotateByRevision = annotateByRevision;
}
/** Sets recursive (-R switch) or local (-l switch) behaviour.
*/
public void setRecursive(boolean recursive) {
this.recursive = recursive;
}
/** Returns recursive (-R switch) or local (-l switch) behaviour.
*/
public boolean isRecursive() {
return recursive;
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.