Interface PlexusConfiguration
-
- All Known Implementing Classes:
DefaultPlexusConfiguration
,XmlPlexusConfiguration
public interface PlexusConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlexusConfiguration
addChild(String name, String value)
void
addChild(PlexusConfiguration child)
String
getAttribute(String attributeName)
String
getAttribute(String attributeName, String defaultValue)
String[]
getAttributeNames()
PlexusConfiguration
getChild(int index)
PlexusConfiguration
getChild(String childName)
PlexusConfiguration
getChild(String childName, boolean create)
int
getChildCount()
PlexusConfiguration[]
getChildren()
PlexusConfiguration[]
getChildren(String childName)
String
getName()
String
getValue()
String
getValue(String defaultValue)
void
setAttribute(String name, String value)
void
setValue(String value)
-
-
-
Method Detail
-
getName
String getName()
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getAttributeNames
String[] getAttributeNames()
-
getChild
PlexusConfiguration getChild(String childName)
-
getChild
PlexusConfiguration getChild(String childName, boolean create)
-
getChildren
PlexusConfiguration[] getChildren()
-
getChildren
PlexusConfiguration[] getChildren(String childName)
-
getChildCount
int getChildCount()
-
getChild
PlexusConfiguration getChild(int index)
-
addChild
void addChild(PlexusConfiguration child)
-
addChild
PlexusConfiguration addChild(String name, String value)
-
-