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

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

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

Record.getDisplayOption介绍

[英]By default display all the fields on change?
[中]默认情况下,是否显示更改时的所有字段?

代码示例

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

/**
 * Called when a new blank record is required for the table/query.
 * Set this field back to the original value.
 */
public void handleNewRecord()   // init this field override for other value
{
  this.handleNewRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a change is the record status is about to happen/has happened.
 * @param iChangeType The type of change.
 * @return An error code.
 */
public int handleRecordChange(int iChangeType)      // init this field override for other value
{
  return this.handleRecordChange(null, iChangeType, this.getDisplayOption());
}
/**

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

/**
 * Called when a change is the record status is about to happen/has happened.
 * @param iChangeType The type of change.
 * @return An error code.
 */
public int handleRecordChange(int iChangeType)      // init this field override for other value
{
  return this.handleRecordChange(null, iChangeType, this.getDisplayOption());
}
/**

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

/**
 * Called when a valid record is read from the table/query.
 */
public void handleValidRecord()                 // init this field override for other value
{
  this.handleValidRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a new blank record is required for the table/query.
 * Set this field back to the original value.
 */
public void handleNewRecord()   // init this field override for other value
{
  this.handleNewRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a new blank record is required for the table/query.
 * Set this field back to the original value.
 */
public void handleNewRecord()   // init this field override for other value
{
  this.handleNewRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a valid record is read from the table/query.
 */
public void handleValidRecord()                 // init this field override for other value
{
  this.handleValidRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a valid record is read from the table/query.
 */
public void handleValidRecord()                 // init this field override for other value
{
  this.handleValidRecord(this.getDisplayOption());
}
/**

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

/**
 * Called when a change is the record status is about to happen/has happened.
 * @param iChangeType The type of change.
 * @return An error code.
 */
public int handleRecordChange(int iChangeType)      // init this field override for other value
{
  return this.handleRecordChange(null, iChangeType, this.getDisplayOption());
}
/**

相关文章

微信公众号

最新文章

更多

Record类方法