Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSuperClass (0.15 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

                if (scopeOf(type) != null) {
                    annotatedSuperTypes.add(type);
                    continue;
                }
    
                if (type.getSuperclass() != null) {
                    queue.add(type.getSuperclass());
                }
                for (Class<?> superInterface : type.getInterfaces()) {
                    if (seen.add(superInterface)) {
                        queue.add(superInterface);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/SerializedLambdaQueries.java

            if (!(lambda instanceof Serializable)) {
                return Optional.empty();
            }
            for (Class<?> lambdaClass = lambda.getClass(); lambdaClass != null; lambdaClass = lambdaClass.getSuperclass()) {
                try {
                    Method replaceMethod = lambdaClass.getDeclaredMethod("writeReplace");
                    replaceMethod.setAccessible(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 20:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/TypeCompatibilityModelProjectionSupport.java

                return valueDescription;
            }
            return type + "#toString() returned null";
        }
    
        public static String description(ModelType<?> type) {
            if (type.getRawClass().getSuperclass() == null && type.getRawClass().getInterfaces().length == 0) {
                return type.toString();
            }
            return type + " (or assignment compatible type thereof)";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/RelevantMethods.java

                this.type = type;
            }
    
            public RelevantMethods build() {
                for (Class<?> clazz = type; clazz != Object.class && clazz != DefaultServiceRegistry.class; clazz = clazz.getSuperclass()) {
                    for (Method method : clazz.getDeclaredMethods()) {
                        if (Modifier.isStatic(method.getModifiers())) {
                            continue;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/DefaultTaskClassInfoStore.java

            IncrementalTaskActionFactory foundIncrementalTaskActionFactory = null;
            for (Class current = type; current != null; current = current.getSuperclass()) {
                for (Method method : current.getDeclaredMethods()) {
                    TaskActionFactory taskActionFactory = createTaskAction(type, method);
                    if (taskActionFactory == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:47 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top