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

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


   * @exception IOException    thrown on error
   */
  public void writeExternal( ObjectOutput out )
     throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("name", name);
    fh.put("dataType", dataType);
    fh.put("defaultValue", defaultValue);
    fh.put("defaultInfo", defaultInfo);
    fh.put("newDefaultUUID", newDefaultUUID);
    fh.put("oldDefaultUUID", oldDefaultUUID );
    fh.putInt("action", action);
   
    if (autoincInc != 0)
    {
      // only write out autoinc values if its an autoinc column.
      fh.putLong("autoincStart", autoincStart);
      fh.putLong("autoincInc", autoincInc);
    }

        if ( providers != null )
        {
            FormatableArrayHolder   fah = new FormatableArrayHolder( providers );
            fh.put( "providers", fah );
        }
       
    out.writeObject(fh);
  }
View Full Code Here


    if (key == null)
      return;

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

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

   */
  public void readExternal( ObjectInput in )
      throws IOException, ClassNotFoundException
  {
    super.readExternal(in);
    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    columnBitMap = (byte[])fh.get("columnBitMap");
  }
View Full Code Here

   */
  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

   */
  public void readExternal( ObjectInput in )
     throws IOException, ClassNotFoundException
  {

    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    uuid = (UUID)fh.get("uuid");
    dFinder = (DependableFinder)fh.get("dFinder");
    providerName = (String) fh.get("providerName");
  }
View Full Code Here

   * @exception IOException    thrown on error
   */
  public void writeExternal( ObjectOutput out )
     throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("uuid", uuid);
    fh.put("dFinder", dFinder);
    fh.put("providerName", providerName);
    out.writeObject(fh);
  }
View Full Code Here

     throws IOException, ClassNotFoundException
  {

    FormatableLongHolder flh;

    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    name = (String)fh.get("name");
    dataType = (DataTypeDescriptor) fh.get("dataType");
    defaultValue = (DataValueDescriptor)fh.get("defaultValue");
    defaultInfo = (DefaultInfo)fh.get("defaultInfo");
    newDefaultUUID = (UUID)fh.get("newDefaultUUID");
    oldDefaultUUID = (UUID)fh.get("oldDefaultUUID");
    action = fh.getInt("action");
   
    if (fh.get("autoincStart") != null)
    {
      autoincStart = fh.getLong("autoincStart");
      autoincInc = fh.getLong("autoincInc");
    }
    else
    {
      autoincInc = autoincStart = 0;
    }
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("dataType", dataType);
    fh.put("defaultValue", defaultValue);
    fh.put("defaultInfo", defaultInfo);
    fh.put("newDefaultUUID", newDefaultUUID);
    fh.put("oldDefaultUUID", oldDefaultUUID );
    fh.putInt("action", action);
   
    if (autoincInc != 0)
    {
      // only write out autoinc values if its an autoinc column.
      fh.putLong("autoincStart", autoincStart);
      fh.putLong("autoincInc", autoincInc);
    }
    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

      synchronized (savedObjects) {

        compileTimeConstants = (FormatableHashtable) savedObjects[ctcNumber];
        if (compileTimeConstants == null) {
          compileTimeConstants = new FormatableHashtable();
          savedObjects[ctcNumber] = compileTimeConstants;
        }
      }
    }
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.