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

x33g5p2x  于2022-01-28 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(78)

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

Record.init介绍

[英]Constructor.
[中]建造师。

代码示例

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public Record(RecordOwner recordOwner)
{
  this();
  this.init(recordOwner);
}
/**

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * initialize the screen record.
 */
public void init(RecordOwner recordOwner)
{
  super.init(recordOwner);
}
/**

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * initialize the screen record.
 */
public void init(RecordOwner recordOwner)
{
  super.init(recordOwner);
}
/**

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public Record(RecordOwner recordOwner)
{
  this();
  this.init(recordOwner);
}
/**

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

/**
 * initialize the screen record.
 */
public void init(RecordOwner recordOwner)
{
  super.init(recordOwner);
}
/**

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 *  Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public void init(Object recordOwner)
{   // This is just for safety (if the FieldList method is called.
  this.init((RecordOwner)recordOwner);
}
/**

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

/**
 *  Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public void init(Object recordOwner)
{   // This is just for safety (if the FieldList method is called.
  this.init((RecordOwner)recordOwner);
}
/**

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 *  Initialize class fields.
 */
public void init(RecordOwner screen)
{
  super.init(screen);
}

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

/**
 * Initialize class fields.
 */
public void init(RecordOwner screen)
{
  m_fldProperties = null;
  super.init(screen);
}

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public Record(RecordOwner recordOwner)
{
  this();
  this.init(recordOwner);
}
/**

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

/**
 * Constructor.
 * @param recordOwner The recordowner to add this record to.
 */
public void init(Object recordOwner)
{   // This is just for safety (if the FieldList method is called.
  this.init((RecordOwner)recordOwner);
}
/**

代码示例来源:origin: com.tourgeek.tour/com.tourgeek.tour.util

/**
 * Override this to open the main file.
 * <p />You should pass this record owner to the new main file (ie., new MyNewTable(thisRecordOwner)).
 * @return The new record.
 */
public Record openMainRecord()
{
  Record record = new OTACode();
  record.setTableNames("CDT");
  record.init(this);
  return record;
}
/**

代码示例来源:origin: com.tourgeek.tour/com.tourgeek.tour.util

/**
 * OpenMergeRecord Method.
 */
public Record openMergeRecord()
{
  String code = this.getProperty("code");
  if (code != null)
  {    // Always
    Record record = new OTACode();
    record.setTableNames(code);
    record.init(this);
    return record;
  }
  return super.openMergeRecord();
}
/**

相关文章

微信公众号

最新文章

更多

Record类方法