Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getEffectiveId (0.11 sec)

  1. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

        /**
         * Get the effective ID of this phase, e.g.,
         * {@code generate-sources} or {@code after:integration-test[1000]}.
         *
         * @return String
         */
        public String getEffectiveId() {
            if (executionPoint == null) {
                if (priority == 0) {
                    return id;
                }
                return id + '[' + priority + ']';
            }
            if (priority == 0) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Aug 29 05:48:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top