Package org.apache.derby.iapi.services.io

Examples of org.apache.derby.iapi.services.io.FormatableHashtable


   */
  public void writeExternal( ObjectOutput out )
      throws IOException
  {
    super.writeExternal(out);
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("columnBitMap", columnBitMap);
    out.writeObject(fh);
  }
View Full Code Here


   *
    * @exception IOException thrown on error
   */
  public void writeExternal(ObjectOutput out) throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("name", name);
    fh.put("tableName", tableName);
    fh.put("schemaName", schemaName);
    fh.putInt("columnPos", columnPos);
    fh.put("type", type);
    fh.putBoolean("isAutoincrement", isAutoincrement);
    fh.putBoolean("updatableByCursor", updatableByCursor);
    out.writeObject(fh);
    return;
 
View Full Code Here

   * @exception ClassNotFoundException    thrown on error
   */
  public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException
  {
    FormatableHashtable fh = (FormatableHashtable)in.readObject();   
    name = (String)fh.get("name");
    tableName = (String)fh.get("tableName");
    schemaName = (String)fh.get("schemaName");
    columnPos = fh.getInt("columnPos");
    type = (DataTypeDescriptor)fh.get("type");
    isAutoincrement = fh.getBoolean("isAutoincrement");
    updatableByCursor = fh.getBoolean("updatableByCursor");
  }
View Full Code Here

    if (key == null)
      return;

    if (compileTimeConstants == null)
      compileTimeConstants = new FormatableHashtable();

    compileTimeConstants.put(key, value);
  }
View Full Code Here

    if (key == null)
      return;

    if (compileTimeConstants == null)
      compileTimeConstants = new FormatableHashtable();

    compileTimeConstants.put(key, value);
  }
View Full Code Here

    if (key == null)
      return;

    if (compileTimeConstants == null)
      compileTimeConstants = new FormatableHashtable();

    compileTimeConstants.put(key, value);
  }
View Full Code Here

      synchronized (savedObjects) {

        compileTimeConstants = (FormatableHashtable) savedObjects[ctcNumber];
        if (compileTimeConstants == null) {
          compileTimeConstants = new FormatableHashtable();
          savedObjects[ctcNumber] = compileTimeConstants;
        }
      }
    }
View Full Code Here

    if (key == null)
      return;

    if (compileTimeConstants == null)
      compileTimeConstants = new FormatableHashtable();

    compileTimeConstants.put(key, value);
  }
View Full Code Here

      synchronized (savedObjects) {

        compileTimeConstants = (FormatableHashtable) savedObjects[ctcNumber];
        if (compileTimeConstants == null) {
          compileTimeConstants = new FormatableHashtable();
          savedObjects[ctcNumber] = compileTimeConstants;
        }
      }
    }
View Full Code Here

   *
    * @exception IOException thrown on error
   */
  public void writeExternal(ObjectOutput out) throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("name", name);
    fh.put("tableName", tableName);
    fh.put("schemaName", schemaName);
    fh.putInt("columnPos", columnPos);
    fh.put("type", type);
    fh.putBoolean("isAutoincrement", isAutoincrement);
    fh.putBoolean("updatableByCursor", updatableByCursor);
    out.writeObject(fh);
    return;
 
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.services.io.FormatableHashtable

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.