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

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

There is a newer version: 4.0.0
Show newest version
package org.nakedobjects.applib.events;

import org.nakedobjects.applib.Identifier;


/**
 * Represents a check to determine whether a member of an object is visible or has been hidden.
 * 
 * 

* If {@link #getReason()} is null, then is usable; otherwise is invisible. * * @see AccessEvent * @see UsabilityEvent * @see ValidityEvent */ public abstract class VisibilityEvent extends InteractionEvent { private static final long serialVersionUID = 1L; public VisibilityEvent(final Object source, final Identifier identifier) { super(source, identifier); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy