Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getId (0.17 sec)

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

            <codeSegment>
              <version>2.0.0+</version>
              <code><![CDATA[
        public String getPluginLookupKey() {
            return groupId + ":" + artifactId;
        }
    
        public String getId() {
            return groupId + ":" + artifactId + ":" + version;
        }
    
              ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
    
        <class xdoc.anchorName="mojo">
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

         */
        public boolean equals(Object obj) {
            RepositoryBase other = (RepositoryBase) obj;
            boolean retValue = false;
            if (this.getId() != null) {
                retValue = this.getId().equals(other.getId());
            }
            return retValue;
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
    
        <class>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

        }
    
        /**
         * @return a Map of executions field with {@code PluginExecution#getId()} as key
         * @see PluginExecution#getId()
         */
        public Map<String, PluginExecution> getExecutionsAsMap() {
            return getExecutions().stream().collect(Collectors.toMap(exec -> exec.getId(), exec -> exec));
        }
                ]]>
              </code>
            </codeSegment>
            <codeSegment>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top