Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for setValue1 (0.43 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple3.java

            this.value3 = value3;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
         * @param value1
         *            1番目の値
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
         * 2番目の値を返します。
         *
         * @return 2番目の値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple4.java

        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
         * @param value1
         *            1番目の値
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
         * 2番目の値を返します。
         *
         * @return 2番目の値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple5.java

        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
         * @param value1
         *            1番目の値
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
         * 2番目の値を返します。
         *
         * @return 2番目の値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/sortsOptionsInAlphabeticOrder/build.gradle

        void doSomething() {
        }
    
        @Option(option = "valueB", description = "descB")
        public void setValueB(boolean value) {
        }
    
        @Option(option = "valueA", description = "descA")
        public void setValueA(boolean value) {
        }
    
        @Option(option = "valueC", description = "descC")
        public void setValueC(boolean value) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:17:44 UTC 2018
    - 475 bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            final PropertyDesc propDesc = beanDesc.getPropertyDesc("hhh");
            // propDesc.setValue(myBean, "2000/11/8 11:22:33");
            propDesc.setValue(myBean, "1/2/24, 12:08 PM");
            assertThat(myBean.getHhh(), is(notNullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSetCalendarValue() throws Exception {
            final MyBean myBean = new MyBean();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

            void notASetterOrGetter();
        }
    
        interface InvalidParameter2 {
            void setValue()
            String getValue()
        }
    
        interface InvalidParameter3 {
            void setValue(Integer value)
            String getValue()
        }
    
        interface InvalidParameter4 {
            void setValue(String value)
        }
    
        interface InvalidParameter5 {
            String getValue()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/BiMapEntrySetTester.java

      public void testSetValue_valueAbsent() {
        for (Entry<K, V> entry : getMap().entrySet()) {
          if (entry.getKey().equals(k0())) {
            assertEquals("entry.setValue() should return the old value", v0(), entry.setValue(v3()));
          }
        }
        expectReplacement(entry(k0(), v3()));
      }
    
      @MapFeature.Require(SUPPORTS_PUT)
      @CollectionSize.Require(SEVERAL)
      public void testSetValue_valuePresent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        public File getDestinationDirectory() {
            return destinationDirectory.getValue();
        }
    
        @Override
        public void setDestinationDirectory(File directory) {
            this.destinationDirectory.setValue(directory);
        }
    
        @Override
        public StandardJavadocDocletOptions destinationDirectory(File destinationDirectory) {
            setDestinationDirectory(destinationDirectory);
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

        def "rule can create a map of model elements"() {
            when:
            buildScript '''
                @Managed
                interface Thing extends Named {
                  void setValue(String value)
                  String getValue()
                }
    
                @Managed
                interface Container {
                  ModelMap<Thing> getThings();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

                def connectionArgs = connection.defaultArguments()
                connectionArgs.get("port").setValue(port as String)
                connectionArgs.get("hostname").setValue(host)
                this.vm = connection.attach(connectionArgs)
            }
            vm
        }
    
        def listen(boolean acceptAsync = true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top