Package org.apache.maven.model
Class Prerequisites
- java.lang.Object
-
- org.apache.maven.model.Prerequisites
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,InputLocationTracker
public class Prerequisites extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
Describes the prerequisites a project can have.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Prerequisites()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Prerequisitesclone()Method clone.InputLocationgetLocation(java.lang.Object key)Gets the location of the specified field in the input source.java.lang.StringgetMaven()Get for a plugin project (packaging ismaven-plugin), the minimum version of Maven required to use the resulting plugin.voidsetLocation(java.lang.Object key, InputLocation location)Sets the location of the specified field.voidsetMaven(java.lang.String maven)Set for a plugin project (packaging ismaven-plugin), the minimum version of Maven required to use the resulting plugin.voidsetOtherLocation(java.lang.Object key, InputLocation location)
-
-
-
Method Detail
-
clone
public Prerequisites clone()
Method clone.- Overrides:
clonein classjava.lang.Object- Returns:
- Prerequisites
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTrackerGets the location of the specified field in the input source.- Specified by:
getLocationin interfaceInputLocationTracker- Parameters:
key- a key object.- Returns:
- InputLocation
-
getMaven
public java.lang.String getMaven()
Get for a plugin project (packaging ismaven-plugin), the minimum version of Maven required to use the resulting plugin.- Returns:
- String
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)Description copied from interface:InputLocationTrackerSets the location of the specified field.- Specified by:
setLocationin interfaceInputLocationTracker- Parameters:
key- a key object.location- a location object.
-
setOtherLocation
public void setOtherLocation(java.lang.Object key, InputLocation location)- Parameters:
key- a key object.location- a location object.
-
setMaven
public void setMaven(java.lang.String maven)
Set for a plugin project (packaging ismaven-plugin), the minimum version of Maven required to use the resulting plugin.- Parameters:
maven- a maven object.
-
-