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

org.nakedobjects.applib.events.PropertyVisibilityEvent Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.applib.events;

import org.nakedobjects.applib.Identifier;


/**
 * Represents a check as to whether a property is visible or has been hidden.
 * 
 * 

* If {@link #getReason()} is not null then provides the reason why the property is invisible; * otherwise property is visible. */ public class PropertyVisibilityEvent extends VisibilityEvent { private static final long serialVersionUID = 1L; public PropertyVisibilityEvent(final Object source, final Identifier propertyIdentifier) { super(source, propertyIdentifier); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy