Uses of Class
org.apache.maven.api.cli.extensions.InputSource
Packages that use InputSource
Package
Description
Provides support for Maven core extensions configuration and management.
-
Uses of InputSource in org.apache.maven.api.cli.extensions
Methods in org.apache.maven.api.cli.extensions that return InputSourceModifier and TypeMethodDescriptionInputLocation.getSource()Gets the input source where this location originates from.Methods in org.apache.maven.api.cli.extensions with parameters of type InputSourceModifier and TypeMethodDescriptionstatic InputLocationInputLocation.of(int lineNumber, int columnNumber, InputSource source) Creates an InputLocation with the specified line number, column number, and source.static InputLocationInputLocation.of(int lineNumber, int columnNumber, InputSource source, Object selfLocationKey) Creates an InputLocation with the specified line number, column number, source, and a self-location key.static InputLocationInputLocation.of(int lineNumber, int columnNumber, InputSource source, Map<Object, InputLocation> locations) Creates an InputLocation with the specified line number, column number, source, and a complete locations map.static InputLocationInputLocation.of(InputSource source) Creates an InputLocation with the specified source.Constructors in org.apache.maven.api.cli.extensions with parameters of type InputSourceModifierConstructorDescriptionInputLocation(int lineNumber, int columnNumber, InputSource source) Deprecated.InputLocation(int lineNumber, int columnNumber, InputSource source, Object selfLocationKey) Deprecated.since 4.0.0-rc-6, useInputLocation.of(int, int, InputSource, Object)insteadInputLocation(int lineNumber, int columnNumber, InputSource source, Map<Object, InputLocation> locations) Deprecated.since 4.0.0-rc-6, useInputLocation.of(int, int, InputSource, Map)insteadInputLocation(InputSource source) Deprecated.since 4.0.0-rc-6, useInputLocation.of(InputSource)instead
InputLocation.of(int, int, InputSource)instead