- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setStaticFieldValue (0.36 sec)
-
src/main/java/org/codelibs/core/beans/FieldDesc.java
/** * Sets the value of the static {@link Field}. * * @param value * the value of the {@link Field} */ void setStaticFieldValue(Object value);
Registered: Fri Sep 05 20:58:11 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
public void setFieldValue(final Object target, final Object value) { assertArgumentNotNull("target", target); FieldUtil.set(field, target, value); } @Override public void setStaticFieldValue(final Object value) { if (!isStatic()) { throw new FieldNotStaticRuntimeException(beanDesc.getBeanClass(), fieldName); } FieldUtil.set(field, value); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/FieldDescImplTest.java
public void testAaa_SetStaticFieldValue() throws Exception { final BeanDesc beanDesc = new BeanDescImpl(MyBean.class); final FieldDesc aaa = beanDesc.getFieldDesc("aaa"); aaa.setStaticFieldValue(String.class); } /** * @throws Exception */ @Test public void testList() throws Exception { final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5K bytes - Viewed (0)