Class PropertyEventImpl

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.mixin.ActionAccessor

        org.refcodes.mixin.ActionAccessor.ActionBuilder<A extends java.lang.Object,B extends org.refcodes.mixin.ActionAccessor.ActionBuilder<A,B>>, org.refcodes.mixin.ActionAccessor.ActionMutator<A extends java.lang.Object>, org.refcodes.mixin.ActionAccessor.ActionProperty<A extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.KeyAccessor

        org.refcodes.mixin.KeyAccessor.KeyBuilder<K extends java.lang.Object,B extends org.refcodes.mixin.KeyAccessor.KeyBuilder<K,B>>, org.refcodes.mixin.KeyAccessor.KeyMutator<K extends java.lang.Object>, org.refcodes.mixin.KeyAccessor.KeyProperty<K extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.structure.Property

        org.refcodes.structure.Property.PropertyBuilder
      • Nested classes/interfaces inherited from interface org.refcodes.structure.Relation

        org.refcodes.structure.Relation.RelationBuilder<K extends java.lang.Object,V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.SourceAccessor

        org.refcodes.mixin.SourceAccessor.SourceMutator<SRC extends java.lang.Object>, org.refcodes.mixin.SourceAccessor.SourceProperty<SRC extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

        org.refcodes.mixin.ValueAccessor.ValueBuilder<V extends java.lang.Object,B extends org.refcodes.mixin.ValueAccessor.ValueBuilder<V,B>>, org.refcodes.mixin.ValueAccessor.ValueMutator<V extends java.lang.Object>, org.refcodes.mixin.ValueAccessor.ValueProperty<V extends java.lang.Object>
    • Field Summary

      • Fields inherited from class org.refcodes.observer.AbstractActionEvent

        _action
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey​()
      java.lang.String getValue​()
      • Methods inherited from class org.refcodes.observer.AbstractActionEvent

        getAction
      • Methods inherited from class org.refcodes.observer.AbstractEvent

        getSource
      • Methods inherited from interface org.refcodes.mixin.ActionAccessor

        getAction
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.refcodes.structure.Property

        toProperty
      • Methods inherited from interface org.refcodes.mixin.SourceAccessor

        getSource
    • Constructor Detail

      • PropertyEventImpl

        public PropertyEventImpl​(java.lang.String aKey,
                                 java.lang.String aValue,
                                 PropertyAction aAction,
                                 ObservableProperties aSource)
        Constructs a PropertyEventImpl with the given key and value representing the affected Property.
        Parameters:
        aKey - The key of the Property being involved in the event.
        aValue - The value of the Property being involved in the event.
        aAction - The action which the PropertyEvent represents.
        aSource - The source from which this event originated.
      • PropertyEventImpl

        public PropertyEventImpl​(org.refcodes.structure.Property aProperty,
                                 PropertyAction aAction,
                                 ObservableProperties aSource)
        Constructs a PropertyEventImpl with the given key and value representing the affected Property.
        Parameters:
        aProperty - The key and value pair of the Property being involved in the event.
        aAction - The action which the PropertyEvent represents.
        aSource - The source from which this event originated.
    • Method Detail

      • getKey

        public java.lang.String getKey​()
        Specified by:
        getKey in interface org.refcodes.mixin.KeyAccessor<PropertyAction>
      • getValue

        public java.lang.String getValue​()
        Specified by:
        getValue in interface org.refcodes.mixin.ValueAccessor<PropertyAction>