public class SourceControlDriverItem
extends Object
SourceControlDriverItem: data class that holds the definition of a Source Control Driver.
| Constructor and Description |
|---|
SourceControlDriverItem(String name,
String baseClass)
Create a SourceControlDriverItem with the provided name and baseClass settings.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clearProperty(String name)
Clear a property by name.
|
String |
getBaseClass()
Get the baseClass of the driver.
|
String |
getDescription()
Get the description.
|
String |
getName()
Get the name used to refer to this driver item.
|
WMSProperties |
getProperties()
Get the set of properties defined.
|
String |
getProperty(String name)
Get a property by name.
|
void |
setBaseClass(String baseClass)
Set the baseClass of the driver.
|
void |
setDescription(String description)
Set the description.
|
void |
setName(String name)
Set the name use to refer to this driver item.
|
void |
setProperty(String name,
String value)
Set a property to a string value.
|
String |
toString()
Returns a string presentation of the driver item.
|
public SourceControlDriverItem(String name,
String baseClass)
name - The name used when configuring a source control driver that uses the supplied baseClassbaseClass - the baseClass to use for a SourceControlDriver configured with the supplied namepublic void clearProperty(String name)
name - of the property to clearpublic String getBaseClass()
public String getDescription()
public String getName()
public WMSProperties getProperties()
public String getProperty(String name)
name - of the property to getpublic void setBaseClass(String baseClass)
baseClass - the string name of the baseClasspublic void setDescription(String description)
description - public void setName(String name)
name - the name to refer to this driver item bypublic void setProperty(String name,
String value)
name - property namevalue - property valuepublic String toString()
toString in class Object