Interface EclipseBuildCommand


  • public interface EclipseBuildCommand
    An Eclipse build command is a reference to a project builder object which automatically executes whenever a resource in the associate project changes.
    Since:
    2.9
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Map<java.lang.String,​java.lang.String> getArguments()
      The arguments supplied for the build command.
      java.lang.String getName()
      Returns the name of the build command.
    • Method Detail

      • getArguments

        java.util.Map<java.lang.String,​java.lang.String> getArguments()
        The arguments supplied for the build command.

        Corresponds to the org.eclipse.core.resources.ICommand#getBuilderName() method in the Eclipse platform API.

        Returns:
        The arguments map. If no arguments supplied then returns an empty map.
        See Also:
        Definition of ICommand#getArguments() in the Eclipse documentation