6465666768697071
{ return javaField.getBoolean(that); } catch (Exception ex) { throw new SystemException(ex); } }
7677787980818283
{ return javaField.getByte(that); } catch (Exception ex) { throw new SystemException(ex); } }
8889909192939495
{ return javaField.getChar(that); } catch (Exception ex) { throw new SystemException(ex); } }
100101102103104105106107
{ return javaField.getDouble(that); } catch (Exception ex) { throw new SystemException(ex); } }
112113114115116117118119
{ return javaField.getFloat(that); } catch (Exception ex) { throw new SystemException(ex); } }
124125126127128129130131
{ return javaField.getInt(that); } catch (Exception ex) { throw new SystemException(ex); } }
136137138139140141142143
{ return javaField.getLong(that); } catch (Exception ex) { throw new SystemException(ex); } }
148149150151152153154155
{ return javaField.getShort(that); } catch (Exception ex) { throw new SystemException(ex); } }
160161162163164165166167
{ return javaField.get(that); } catch (Exception ex) { throw new SystemException(ex); } }
179180181182183184185186
javaField.setBoolean(that, value); } } catch (Exception ex) { throw new SystemException(ex); } }