Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValue (0.15 sec)

  1. maven-compat/src/main/mdo/profiles.mdo

                {
                    RepositoryBase other =  (RepositoryBase) obj;
    
                    boolean retValue = false;
    
                    if ( id != null )
                    {
                        retValue = id.equals( other.id );
                    }
    
                    return retValue;
                }
              ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K 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)
Back to top