- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 49 for isPublic (0.05 sec)
-
src/test/java/jcifs/spnego/SpnegoConstantsTest.java
for (Map.Entry<String, String> e : expected.entrySet()) { Field f = SpnegoConstants.class.getField(e.getKey()); int m = f.getModifiers(); assertTrue(Modifier.isPublic(m), e.getKey() + " must be public"); assertTrue(Modifier.isStatic(m), e.getKey() + " must be static"); assertTrue(Modifier.isFinal(m), e.getKey() + " must be final");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/FieldDesc.java
*/ <T> Class<T> getFieldType(); /** * Returns {@literal true} if the field is {@literal public}. * * @return {@literal true} if the field is {@literal public} */ boolean isPublic(); /** * Returns {@literal true} if the field is {@literal static}. * * @return {@literal true} if the field is {@literal static} */ boolean isStatic(); /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java
return fieldName; } @SuppressWarnings("unchecked") @Override public <T> Class<T> getFieldType() { return (Class<T>) fieldType; } @Override public boolean isPublic() { return FieldUtil.isPublicField(field); } @Override public boolean isStatic() { return !FieldUtil.isInstanceField(field); } @OverrideRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
Method[] methods = clazz.getMethods(); // Short circuit for the (hopefully) majority of cases where the // clazz is public if (Modifier.isPublic(clazz.getModifiers())) { return methods; } // No luck - the class is not public, so we're going the longer way. MethodInfo[] methodInfos = new MethodInfo[methods.length];
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SessionSetupHandlerTest.java
// Arrange & Act Class<SessionSetupHandler> clazz = SessionSetupHandler.class; // Assert assertTrue(clazz.isInterface(), "Should be an interface"); assertTrue(Modifier.isPublic(clazz.getModifiers()), "Interface should be public"); assertEquals("jcifs.smb", clazz.getPackageName(), "Package must match source");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
* The method. Cannot be {@literal null} * @return <code>public</code> if the method is public */ public static boolean isPublic(final Method method) { assertArgumentNotNull("method", method); return Modifier.isPublic(method.getModifiers()); } /** * Returns whether the method is <code>static</code>. * * @param methodRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy
} result.addAll(c.declaredMethods.findAll { isPublicApi(it) }) collect(result, c.superclass) } private boolean isPublicApi(CtMethod method) { return Modifier.isPublic(method.modifiers) || Modifier.isProtected(method.modifiers) } private List<String> filterChangesToReport(CtClass c, Set<CtMethod> methods) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 4.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
}); } private void visitTypeDeclaration(TypeDeclaration<?> typeDeclaration, ClassMetaDataRepository<ClassMetaData> repository, ClassMetaData.MetaType metaType, Runnable action) { if (!typeDeclaration.isPublic()) { return; } ClassMetaData outerClass = classStack.isEmpty() ? null : getCurrentClass(); String baseName = typeDeclaration.getNameAsString();Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionGeneratorFacade.kt
api: ApiTypeProvider, sinceSupplier: (String) -> String?, apiSpec: ApiSpec ): Sequence<KotlinExtensionFunction> = api.allTypes() .filter { type -> type.isPublic && apiSpec.isApi(type.sourceName) } .flatMap { type -> kotlinExtensionFunctionsFor(type, sinceSupplier) } .distinctBy(::signatureKey) privateRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Mar 12 15:56:18 UTC 2025 - 17.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkTester.java
} static ImmutableList<Method> getTestMethods(Class<?> testClass) { List<Method> result = new ArrayList<>(); for (Method method : testClass.getDeclaredMethods()) { if (Modifier.isPublic(method.getModifiers()) && method.getReturnType() == void.class && method.getParameterTypes().length == 0 && method.getName().startsWith("test")) { result.add(method); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.9K bytes - Viewed (0)