- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 42 for classname (0.11 sec)
-
src/main/java/org/codelibs/core/lang/ClassUtil.java
* * @param className * クラス名。{@literal null}や空文字列であってはいけません * @return FQCNからパッケージ名を除いた名前 */ public static String getShortClassName(final String className) { assertArgumentNotEmpty("className", className); final int i = className.lastIndexOf('.'); if (i > 0) { return className.substring(i + 1); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
final String className = entryName.substring(startPos, entryName.length() - CLASS_SUFFIX.length()).replace('/', '.'); final int pos = className.lastIndexOf('.'); final String packageName = pos == -1 ? null : className.substring(0, pos); final String shortClassName = pos == -1 ? className : className.substring(pos + 1);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java
* 原因となった例外 */ public ClassNotFoundRuntimeException(final String className, final ClassNotFoundException cause) { super("ECL0044", asArray(cause), cause); this.className = className; } /** * クラス名を返します。 * * @return クラス名 */ public String getClassName() { return className; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
for (Element element : roundEnv.getElementsAnnotatedWith(Named.class)) { if (element instanceof TypeElement typeElement) { String className = getFullClassName(typeElement); processedClasses.add(className); } } if (roundEnv.processingOver()) { try { updateFileIfChanged(); } catch (Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 16 06:25:19 UTC 2024 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/FessLastaDocTest.java
if (clazz.isInterface() || Modifier.isAbstract(clazz.getModifiers())) { // e.g. BaseAction return; } final String className = clazz.getName(); if (className.contains(appWebPkg) && className.endsWith(actionSuffix)) { // ## Assert ## markHere("exists"); getComponent(clazz); // expect no exception } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java
try { return loader.loadClass(className); } catch (final ClassNotFoundException e) { throw new ClassNotFoundRuntimeException(e); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.2K bytes - Viewed (0) -
pom.xml
return types --> <className>**</className> <differenceType>7006</differenceType> <method>*</method> <from>*</from> <to>*</to> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>boolean isSendNTLMTargetName()</method>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Sep 26 04:40:32 UTC 2024 - 9.3K bytes - Viewed (0) -
samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt
} else { System.err.println("No main for $className") } } catch (ite: InvocationTargetException) { if (!expectedFailure(className, ite.cause!!)) { throw ite.cause!! } } } @Suppress("UNUSED_PARAMETER") private fun expectedFailure( className: String, cause: Throwable, ): Boolean { return when (className) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
} /** * クラス名をクラスファイルのパス名に変換して返します。 * * @param className * クラス名 * @return クラスファイルのパス名 */ protected static String toClassFile(final String className) { assertArgumentNotNull("className", className); return className.replace('.', '/') + ".class"; } /** * ファイルを表すURLからルートパッケージの上位となるベースディレクトリを求めて返します。
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 19.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
* #toStringHelper(Object)}, but using {@code className} instead of using an instance's {@link * Object#getClass()}. * * @param className the name of the instance type * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}). */ public static ToStringHelper toStringHelper(String className) { return new ToStringHelper(className); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 16.1K bytes - Viewed (0)