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

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

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

FieldList.setupKeys介绍

[英]Set up all the key areas for this record. Override this to add the key areas.
[中]设置此记录的所有关键区域。覆盖此选项以添加关键区域。

代码示例

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.product

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.product

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.payroll

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.request

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.payroll

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.product

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.request

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.product

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

代码示例来源:origin: com.tourapp.thin/com.tourapp.thin.tour.product

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
* Set up the key areas.
*/
public void setupKeys()
{
  KeyAreaInfo keyArea = null;
  super.setupKeys();
}

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

/**
 * init.
 */
public void init(Object recordOwner)
{
  m_recordOwner = recordOwner;
  if (m_dbOpenMode == Constants.OPEN_NORMAL)  // In case it was changed in contructor() and init was called after
    m_dbOpenMode = Constants.OPEN_NORMAL;
  if (this.getTask() != null)
    m_dbOpenMode = m_dbOpenMode | this.getTask().getDefaultLockType(this.getDatabaseType());
  m_vFieldInfo = new Vector<Field>();
  m_vKeyAreaList = new Vector<Key>();
  this.setupFields();         // Add this FieldList's fields
  this.setupKeys();       // Set up the key areas
  m_dbEditMode = Constants.EDIT_NONE;
  m_bIsAutoSequence = true;
}
/**

相关文章