Package org.apache.maven.model
Interface InputLocationTracker
-
- All Known Implementing Classes:
Activation,ActivationFile,ActivationOS,ActivationProperty,Build,BuildBase,CiManagement,ConfigurationContainer,Contributor,Dependency,DependencyManagement,DeploymentRepository,Developer,DistributionManagement,Exclusion,Extension,FileSet,InputLocation,IssueManagement,License,MailingList,Model,ModelBase,Notifier,Organization,Parent,PatternSet,Plugin,PluginConfiguration,PluginContainer,PluginExecution,PluginManagement,Prerequisites,Profile,Relocation,Reporting,ReportPlugin,ReportSet,Repository,RepositoryBase,RepositoryPolicy,Resource,Scm,Site
public interface InputLocationTrackerInterface InputLocationTracker.- Version:
- $Revision$ $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputLocationgetLocation(java.lang.Object field)Gets the location of the specified field in the input source.voidsetLocation(java.lang.Object field, InputLocation location)Sets the location of the specified field.
-
-
-
Method Detail
-
getLocation
InputLocation getLocation(java.lang.Object field)
Gets the location of the specified field in the input source.- Parameters:
field- The key of the field, must not benull.- Returns:
- The location of the field in the input source or
nullif unknown.
-
setLocation
void setLocation(java.lang.Object field, InputLocation location)Sets the location of the specified field.- Parameters:
field- The key of the field, must not benull.location- The location of the field, may benull.
-
-