Interface PlexusConfiguration
-
- All Known Implementing Classes:
DefaultPlexusConfiguration,XmlPlexusConfiguration
public interface PlexusConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlexusConfigurationaddChild(String name, String value)voidaddChild(PlexusConfiguration child)StringgetAttribute(String attributeName)StringgetAttribute(String attributeName, String defaultValue)String[]getAttributeNames()PlexusConfigurationgetChild(int index)PlexusConfigurationgetChild(String childName)PlexusConfigurationgetChild(String childName, boolean create)intgetChildCount()PlexusConfiguration[]getChildren()PlexusConfiguration[]getChildren(String childName)StringgetName()StringgetValue()StringgetValue(String defaultValue)voidsetAttribute(String name, String value)voidsetValue(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)
-
-