org.jbundle.thin.base.db.FieldList.init()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中org.jbundle.thin.base.db.FieldList.init()方法的一些代码示例,展示了FieldList.init()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FieldList.init()方法的具体详情如下:
包路径:org.jbundle.thin.base.db.FieldList
类名称:FieldList
方法名:init

FieldList.init介绍

[英]init.
[中]初始化。

代码示例

代码示例来源:origin: org.jbundle.thin.base.db/org.jbundle.thin.base.db

/**
 * Constructor.
 */
public FieldList(Object recordOwner)
{
  this();
  this.init(recordOwner);
}
/**

代码示例来源:origin: org.jbundle.thin.base.db/org.jbundle.thin.base.db

/**
 * Make an exact copy of this FieldList.
 * @return     a clone of this instance.
 * @exception  CloneNotSupportedException  if the object's class does not support the <code>Cloneable</code> interface.
 * @see        java.lang.Cloneable
 */
public Object clone() throws CloneNotSupportedException
{
  FieldList fieldList = null;
  try {
    Class<?> c = this.getClass();
    fieldList = (FieldList)c.newInstance();
    fieldList.init(null);   // This is strange, but otherwise this doesn't call right
  }
  catch (Exception e) {
    fieldList = null;
  }
  return fieldList;
}
/**

代码示例来源:origin: org.jbundle.base/org.jbundle.base

/**
 * Given the fully qualified (domain prefix not required) class name, create the thin version of the record.
 * @param strClassName The thick record class name.
 * @return The new thin fieldlist for this record.
 */
public static FieldList makeThinRecordFromClassname(String strClassName)
{
  FieldList record = (FieldList)ClassServiceUtility.getClassService().makeObjectFromClassName(strClassName);
  if (record != null)
    record.init(null);
  return record;
}

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

/**
 * Given the fully qualified (domain prefix not required) class name, create the thin version of the record.
 * @param strClassName The thick record class name.
 * @return The new thin fieldlist for this record.
 */
public static FieldList makeThinRecordFromClassname(String strClassName)
{
  FieldList record = (FieldList)ClassServiceUtility.getClassService().makeObjectFromClassName(strClassName);
  if (record != null)
    record.init(null);
  return record;
}

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

/**
 * Given the fully qualified (domain prefix not required) class name, create the thin version of the record.
 * @param strClassName The thick record class name.
 * @return The new thin fieldlist for this record.
 */
public static FieldList makeThinRecordFromClassname(String strClassName)
{
  FieldList record = (FieldList)ClassServiceUtility.getClassService().makeObjectFromClassName(strClassName);
  if (record != null)
    record.init(null);
  return record;
}

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

recordOwner.addRecord(this, false);
super.init(recordOwner);    // Set up the fields.
this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

代码示例来源:origin: org.jbundle.base/org.jbundle.base

recordOwner.addRecord(this, false);
super.init(recordOwner);    // Set up the fields.
this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

recordOwner.addRecord(this, false);
super.init(recordOwner);    // Set up the fields.
this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

相关文章