Package nl.zerofiftyit.mdepunit.model
Class PomElement
- java.lang.Object
-
- nl.zerofiftyit.mdepunit.model.PomElement
-
public final class PomElement extends Object
Represents a POM (Project Object Model) element with a specific path and value. This class is immutable and designed to encapsulate a simple mapping between a path string and its corresponding value within a POM structure.
-
-
Constructor Summary
Constructors Constructor Description PomElement(String path, Object value)Constructs a new PomElement with the specified path and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPath()Retrieves the path associated with this POM element.ObjectgetValue()Retrieves the value associated with this POM element.
-