Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MailingList (0.04 sec)

  1. compat/maven-model/src/test/java/org/apache/maven/model/MailingListTest.java

    /**
     * Tests {@code MailingList}.
     *
     */
    class MailingListTest {
    
        @Test
        void testHashCodeNullSafe() {
            new MailingList().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new MailingList().equals(null));
    
            new MailingList().equals(new MailingList());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                }
            }
    
            private void visit(MailingList mailingList) {
                if (mailingList != null) {
                    String org, val;
                    // Name
                    org = mailingList.getName();
                    val = interpolate(org);
                    if (org != val) {
                        mailingList.setName(val);
                    }
                    // Subscribe
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                return getLicenseKey(license);
            }
        }
    
        /**
         * KeyComputer for MailingList
         */
        private class MailingListKeyComputer implements KeyComputer<MailingList> {
            @Override
            public Object key(MailingList mailingList) {
                return getMailingListKey(mailingList);
            }
        }
    
        /**
         * KeyComputer for Developer
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setMailingLists(List<MailingList> mailingLists) {
            getModel().setMailingLists(mailingLists);
        }
    
        public List<MailingList> getMailingLists() {
            return getModel().getMailingLists();
        }
    
        public void addMailingList(MailingList mailingList) {
            getModel().addMailingList(mailingList);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              <name>mailingLists</name>
              <version>3.0.0+</version>
              <description>Contains information about a project's mailing lists.</description>
              <association>
                <type>MailingList</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    
            <!-- ====================================================================== -->
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
Back to top