Project

General

Profile

« Previous | Next » 

Revision e8c81a8e

Added by Leszek Koltunski almost 8 years ago

Cleanup, consistent variable names, minor details.

View differences:

src/main/java/org/distorted/library/message/EffectListener.java
37 37
 * @param eventType  Type of event that happened.
38 38
 * @param effectID   ID of the effect the event happened to. This ID must have been previously returned by one
39 39
 *                   of the DistortedObject.{deform,distort,move,...} functions.
40
 * @param effectName Name of the effect as defined by EffectNames.ordinal()
41
 * @param bitmapID   the ID of the DistortedObject object, as returned by {@link org.distorted.library.DistortedObject#getID()},
40
 * @param effectName Name of the effect as defined by EffectNames.
41
 * @param objectID   the ID of the DistortedObject object, as returned by {@link org.distorted.library.DistortedObject#getID()},
42 42
 *                   this event happened to. If the Object has been created using a copy constructor
43 43
 *                   from another instance of DistortedObject, the ID here will be the one of the original object.
44 44
 * @param message    Any message string associated with it. 'Failed' event types have one.
......
46 46
 * @see EffectNames
47 47
 */
48 48
   
49
  void effectMessage(final EffectMessage eventType, final long effectID, final int effectName, final long bitmapID, final String message);
49
  void effectMessage(final EffectMessage eventType, final long effectID, final EffectNames effectName, final long objectID, final String message);
50 50
  }
51 51

  
52 52
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff