sk.upjs.jpaz2.inspector.OIPropertyNameValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpaz2 Show documentation
Show all versions of jpaz2 Show documentation
Educational framework for Java beginners.
package sk.upjs.jpaz2.inspector;
import java.beans.PropertyDescriptor;
/**
* The encapsulation for property descriptor.
*/
class OIPropertyNameValue {
/**
* Property descriptor
*/
PropertyDescriptor pd;
/**
* Constructs a property name value
*
* @param pd
* the property descriptor
*/
public OIPropertyNameValue(PropertyDescriptor pd) {
this.pd = pd;
}
}