- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for getPropertyName (0.11 seconds)
-
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
*/ public Class<?> getTargetClass() { return targetClass; } /** * Returns the property name. * * @return Property name */ public String getPropertyName() { return propertyName; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
*/ public Class<?> getTargetClass() { return targetClass; } /** * Returns the property name. * * @return the property name */ public String getPropertyName() { return propertyName; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
this.propertyName = propertyName; this.value = value; } /** * Returns the property name. * * @return Property name */ public String getPropertyName() { return propertyName; } /** * Returns the value. * * @return Value */ public Object getValue() { return value; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
* Interface for handling properties. * * @author higa */ public interface PropertyDesc { /** * Returns the property name. * * @return the property name */ String getPropertyName(); /** * Returns the property type. * * @param <T> * the property type * @return the property type */ <T> Class<T> getPropertyType(); /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
parameterizedClassDesc = ParameterizedClassDescFactory.createParameterizedClassDesc(writeMethod, 0, typeVariables); } } @Override public final String getPropertyName() { return propertyName; } @Override @SuppressWarnings("unchecked") public final <T> Class<T> getPropertyType() { return (Class<T>) propertyType; }
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 15.1K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
while (reader.nextProperty()) { hasProperty = true; storage.put(reader.getPropertyName(), reader.getPropertyValue()); int idx = checkHeaderComment(reader.getCommentLines()); layout.put( reader.getPropertyName(), new Layout( idx < reader.getCommentLines().size()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 38.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
while (reader.nextProperty()) { hasProperty = true; storage.put(reader.getPropertyName(), reader.getPropertyValue()); int idx = checkHeaderComment(reader.getCommentLines()); layout.put( reader.getPropertyName(), new Layout( idx < reader.getCommentLines().size()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 09:03:48 GMT 2025 - 38.5K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
assertThat(propDesc.getPropertyName(), is("CCC")); assertThat(propDesc.getPropertyType(), is(sameClass(boolean.class))); assertThat(propDesc.getReadMethod(), is(notNullValue())); assertThat(propDesc.getWriteMethod(), is(nullValue())); propDesc = beanDesc.getPropertyDesc("eee"); assertThat(propDesc.getPropertyName(), is("eee"));
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 13.9K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/ConverterRuntimeExceptionTest.java
public void test() throws Exception { final ConverterRuntimeException e = new ConverterRuntimeException("hoge", "xxx", new RuntimeException("cause")); System.out.println(e.getMessage()); assertThat(e.getPropertyName(), is("hoge")); assertThat(e.getValue(), is((Object) "xxx")); assertThat(e.getCause().getMessage(), is("cause")); }
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
return false; } UpgradedProperty method = currentMethods.get(AccessorKey.ofNewMethod(jApiMethod)); if (method != null) { String propertyName = method.getPropertyName(); String isGetterName = "is" + Character.toUpperCase(propertyName.charAt(0)) + propertyName.substring(1); return method.getReplacedAccessors().stream()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 9.3K bytes - Click Count (0)