org.apache.tools.ant.taskdefs.optional.clearcase

Class CCMklbtype

public class CCMklbtype extends ClearCase

Task to perform mklbtype command to ClearCase.

The following attributes are interpreted:

Attribute Values Required
typename Name of the label type to create Yes
vob Name of the VOB No
replace Replace an existing label definition of the same type No
global Either global or ordinary can be specified, not both. Creates a label type that is global to the VOB or to VOBs that use this VOB No
ordinary Either global or ordinary can be specified, not both. Creates a label type that can be used only in the current VOB. Default No
pbranch Allows the label type to be used once per branch in a given element's version tree No
shared Sets the way mastership is checked by ClearCase. See ClearCase documentation for details No
comment Specify a comment. Only one of comment or cfile may be used. No
commentfile Specify a file containing a comment. Only one of comment or cfile may be used. No
failonerr Throw an exception if the command fails. Default is true No
Field Summary
static StringFLAG_COMMENT
-c flag -- comment to attach to the file
static StringFLAG_COMMENTFILE
-cfile flag -- file containing a comment to attach to the file
static StringFLAG_GLOBAL
-global flag -- creates a label type that is global to the VOB or to VOBs that use this VOB
static StringFLAG_NOCOMMENT
-nc flag -- no comment is specified
static StringFLAG_ORDINARY
-ordinary flag -- creates a label type that can be used only in the current VOB
static StringFLAG_PBRANCH
-pbranch flag -- allows label type to be used once per branch
static StringFLAG_REPLACE
-replace flag -- replace existing label definition of the same type
static StringFLAG_SHARED
-shared flag -- sets the way mastership is checked by ClearCase
Method Summary
voidexecute()
Executes the task.
StringgetComment()
Get comment string
StringgetCommentFile()
Get comment file
booleangetGlobal()
Get global flag status
booleangetOrdinary()
Get ordinary flag status
booleangetPbranch()
Get pbranch flag status
booleangetReplace()
Get replace flag status
booleangetShared()
Get shared flag status
StringgetTypeName()
Get type-name string
StringgetVOB()
Get VOB name
voidsetComment(String comment)
Set comment string
voidsetCommentFile(String cfile)
Set comment file
voidsetGlobal(boolean glob)
Set the global flag
voidsetOrdinary(boolean ordinary)
Set the ordinary flag
voidsetPbranch(boolean pbranch)
Set the pbranch flag
voidsetReplace(boolean repl)
Set the replace flag
voidsetShared(boolean shared)
Set the shared flag
voidsetTypeName(String tn)
Set type-name string
voidsetVOB(String vob)
Set the VOB name

Field Detail

FLAG_COMMENT

public static final String FLAG_COMMENT
-c flag -- comment to attach to the file

FLAG_COMMENTFILE

public static final String FLAG_COMMENTFILE
-cfile flag -- file containing a comment to attach to the file

FLAG_GLOBAL

public static final String FLAG_GLOBAL
-global flag -- creates a label type that is global to the VOB or to VOBs that use this VOB

FLAG_NOCOMMENT

public static final String FLAG_NOCOMMENT
-nc flag -- no comment is specified

FLAG_ORDINARY

public static final String FLAG_ORDINARY
-ordinary flag -- creates a label type that can be used only in the current VOB

FLAG_PBRANCH

public static final String FLAG_PBRANCH
-pbranch flag -- allows label type to be used once per branch

FLAG_REPLACE

public static final String FLAG_REPLACE
-replace flag -- replace existing label definition of the same type

FLAG_SHARED

public static final String FLAG_SHARED
-shared flag -- sets the way mastership is checked by ClearCase

Method Detail

execute

public void execute()
Executes the task.

Builds a command line to execute cleartool and then calls Exec's run method to execute the command line.

Throws: BuildException if the command fails and failonerr is set to true

getComment

public String getComment()
Get comment string

Returns: String containing the comment

getCommentFile

public String getCommentFile()
Get comment file

Returns: String containing the path to the comment file

getGlobal

public boolean getGlobal()
Get global flag status

Returns: boolean containing status of global flag

getOrdinary

public boolean getOrdinary()
Get ordinary flag status

Returns: boolean containing status of ordinary flag

getPbranch

public boolean getPbranch()
Get pbranch flag status

Returns: boolean containing status of pbranch flag

getReplace

public boolean getReplace()
Get replace flag status

Returns: boolean containing status of replace flag

getShared

public boolean getShared()
Get shared flag status

Returns: boolean containing status of shared flag

getTypeName

public String getTypeName()
Get type-name string

Returns: String containing the type-name

getVOB

public String getVOB()
Get VOB name

Returns: String containing VOB name

setComment

public void setComment(String comment)
Set comment string

Parameters: comment the comment string

setCommentFile

public void setCommentFile(String cfile)
Set comment file

Parameters: cfile the path to the comment file

setGlobal

public void setGlobal(boolean glob)
Set the global flag

Parameters: glob the status to set the flag to

setOrdinary

public void setOrdinary(boolean ordinary)
Set the ordinary flag

Parameters: ordinary the status to set the flag to

setPbranch

public void setPbranch(boolean pbranch)
Set the pbranch flag

Parameters: pbranch the status to set the flag to

setReplace

public void setReplace(boolean repl)
Set the replace flag

Parameters: repl the status to set the flag to

setShared

public void setShared(boolean shared)
Set the shared flag

Parameters: shared the status to set the flag to

setTypeName

public void setTypeName(String tn)
Set type-name string

Parameters: tn the type-name string

setVOB

public void setVOB(String vob)
Set the VOB name

Parameters: vob the VOB name

Copyright B) 2000-2007 Apache Software Foundation. All Rights Reserved.