1 19 package org.netbeans.api.mdr.events; 20 21 import javax.jmi.reflect.RefFeatured; 22 import org.netbeans.api.mdr.MDRepository; 23 24 29 public class TransactionEvent extends MDRChangeEvent { 30 31 32 public static final int EVENTMASK_TRANSACTION = 0x011FFFF; 33 34 35 public static final int EVENT_TRANSACTION_START = 0x0110001; 36 37 public static final int EVENT_TRANSACTION_END = 0x0110002; 38 39 43 public TransactionEvent(MDRepository source, int type) { 44 super(source, type); 45 } 46 } 47 | Popular Tags |