byte eventKind = JDWPConstants.EventKind.CLASS_LOAD;
byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL;
EventMod[] mods = new EventMod[] { new EventMod() };
mods[0].clazz = referenceTypeID;
mods[0].modKind = EventMod.ModKind.ClassOnly;
Event event = new Event(eventKind, suspendPolicy, mods);
// Set event
return setEvent(event);
}