1 17 18 package org.objectweb.jac.aspects.gui; 19 20 23 public class SubstanceEvent extends Event { 24 public SubstanceEvent(View source, 25 Object substance) { 26 super(source); 27 this.substance = substance; 28 } 29 30 31 Object substance; 32 public Object getSubstance() { 33 return substance; 34 } 35 public void setSubstance(Object newSubstance) { 36 this.substance = newSubstance; 37 } 38 39 public String toString() { 40 return "CollectionEvent{"+substance+"}"; 41 } 42 } 43 | Popular Tags |