Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for stringMethod (0.09 seconds)

  1. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithMethods.java

    package org.gradle.test;
    
    public class JavaClassWithMethods {
        public JavaClassWithMethods(String value) {
        }
    
        /**
         * A method that returns String.
         */
        String stringMethod(String stringParam) {
            return "value";
        }
    
        /**
         * A method that returns void.
         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 717 bytes
    - Click Count (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithMethods.groovy

    package org.gradle.test
    
    class GroovyClassWithMethods {
    
        GroovyClassWithMethods(String prop) {
            this.prop = prop
        }
    
        /**
         * A method that returns String.
         */
        String stringMethod(String stringParam) {
            'value'
        }
    
        /**
         * A method that returns void.
         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 952 bytes
    - Click Count (0)
Back to Top