Esempio n. 1
0
 public Object[] getIds() {
   Object[] superIds = super.getIds();
   Object[] tmp = fields.keySet().toArray();
   Object[] res = new Object[superIds.length + tmp.length];
   System.arraycopy(tmp, 0, res, 0, tmp.length);
   System.arraycopy(superIds, 0, res, tmp.length, superIds.length);
   return res;
 }
Esempio n. 2
0
 static {
   debug = System.getProperty("sun.jvm.hotspot.utilities.soql.SOQLEngine.debug") != null;
 }