Package oracle.jpub.runtime

Examples of oracle.jpub.runtime.MutableStruct


  public static ORADataFactory getORADataFactory()
  { return _TLogQueueFactory; }
  /* constructors */
  protected void _init_struct(boolean init)
  { if (init) _struct = new MutableStruct(new Object[7], _sqlType, _factory); }
View Full Code Here


  { return create(null, d, sqlType); }
  protected ORAData create(TLogQueue o, Datum d, int sqlType) throws SQLException
  {
    if (d == null) return null;
    if (o == null) o = new TLogQueue();
    o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
    return o;
  }
View Full Code Here

  }

  /* constructor */
  public EfisEvent()
  {
    _struct = new MutableStruct(new Object[3], _sqlType, _factory);
  }
View Full Code Here

  /* CustomDatumFactory interface */
  public CustomDatum create(Datum d, int sqlType) throws SQLException
  {
    if (d == null) return null;
    EfisEvent o = new EfisEvent();
    o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
    return o;
  }
View Full Code Here

  public static ORADataFactory getORADataFactory()
  { return _OracleSdoPointTypeFactory; }
  /* constructors */
  protected void _init_struct(boolean init)
  { if (init) _struct = new MutableStruct(new Object[3], _sqlType, _factory); }
View Full Code Here

  { return create(null, d, sqlType); }
  protected ORAData create(OracleSdoPointType o, Datum d, int sqlType) throws SQLException
  {
    if (d == null) return null;
    if (o == null) o = new OracleSdoPointType();
    o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
    return o;
  }
View Full Code Here

  public static ORADataFactory getORADataFactory()
  { return _OracleSdoGeometryFactory; }
  /* constructors */
  protected void _init_struct(boolean init)
  { if (init) _struct = new MutableStruct(new Object[5], _sqlType, _factory); }
View Full Code Here

  { return create(null, d, sqlType); }
  protected ORAData create(OracleSdoGeometry o, Datum d, int sqlType) throws SQLException
  {
    if (d == null) return null;
    if (o == null) o = new OracleSdoGeometry();
    o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
    return o;
  }
View Full Code Here

TOP

Related Classes of oracle.jpub.runtime.MutableStruct

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.