All Downloads are FREE. Search and download functionalities are using the official Maven repository.

geb.navigator.AttributeAccessingMetaClass.groovy Maven / Gradle / Ivy

package geb.navigator

/**
 * A delegating meta class implementation that intercepts field access using the .@ operator and sends it to getProperty("@$name")
 */
class AttributeAccessingMetaClass extends DelegatingMetaClass {

	AttributeAccessingMetaClass(MetaClass delegate) {
		super(delegate)
	}

	Object getAttribute(Object object, String attribute) {
		object.getProperty("@$attribute")
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy