- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for targetClass (0.11 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/graal/GraalSvm.kt
import okhttp3.internal.platform.Platform @TargetClass(AndroidPlatform::class) @Delete class TargetAndroidPlatform @TargetClass(Android10Platform::class) @Delete class TargetAndroid10Platform @TargetClass(BouncyCastlePlatform::class) @Delete class TargetBouncyCastlePlatform @TargetClass(ConscryptPlatform::class) @Delete class TargetConscryptPlatform @TargetClass(Jdk8WithJettyBootPlatform::class) @Delete
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jan 07 16:05:34 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java
super("ECL0064", asArray(targetClass.getName(), MethodUtil.getSignature(targetClass.getSimpleName(), argTypes)), cause); this.targetClass = targetClass; this.argTypes = argTypes; } /** * ターゲットクラスを返します。 * * @return ターゲットクラス */ public Class<?> getTargetClass() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs))); this.targetClass = targetClass; this.methodArgs = methodArgs; paramTypes = null; } /** * {@link ConstructorNotFoundRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param paramTypes * 引数型の並び
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
*/ public MethodNotFoundRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] methodArgClasses) { super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses))); this.targetClass = targetClass; this.methodName = methodName; this.methodArgClasses = methodArgClasses; } /** * ターゲットの{@link Class}を返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java
private final Class<?> targetClass; /** * {@link IllegalAccessRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param cause * 原因となった例外 */ public IllegalAccessRuntimeException(final Class<?> targetClass, final IllegalAccessException cause) { super("ECL0042", asArray(targetClass.getName(), cause), cause);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java
private final Class<?> targetClass; private final String fieldName; /** * {@link FieldNotFoundRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param fieldName * フィールド名 */ public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
private final Class<?> targetClass; private final String propertyName; /** * {@link PropertyNotFoundRuntimeException}を返します。 * * @param targetClass * ターゲットクラス * @param propertyName * プロパティ名 */ public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java
* 原因となった例外 */ public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes, final Throwable cause) { super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause); this.targetClass = targetClass; this.methodName = methodName; this.argTypes = argTypes; } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
* クラスに定義されたフィールドを準備します。 * * @param targetClass * 対象のクラス */ private void setupFieldDescsByClass(final Class<?> targetClass) { addFieldDescs(targetClass); for (final Class<?> intf : targetClass.getInterfaces()) { setupFieldDescsByInterface(intf); } final Class<?> superClass = targetClass.getSuperclass();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0)