org.geotools.util.logging.Logging.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(149)

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

Logging.<init>介绍

[英]Creates an instance for the root logger. This constructor should not be used for anything else than #ALL construction; use #getLogging instead.
[中]为根记录器创建一个实例。该构造器不得用于除#所有构造之外的任何其他用途;改用#getLogging。

代码示例

代码示例来源:origin: geotools/geotools

  1. children[i] = new Logging(logging, name);
  2. logging.children = children;

代码示例来源:origin: stackoverflow.com

  1. package controllers;
  2. import javafx.collections.FXCollections;
  3. import javafx.collections.ObservableList;
  4. import javafx.fxml.FXML;
  5. import javafx.scene.control.TableView;
  6. public class MyController {
  7. @FXML
  8. private TableView<Logging> tableView;
  9. public ObservableList<Logging> loggings = FXCollections.observableArrayList();
  10. @FXML
  11. protected void initialize(){
  12. loggings.add(new Logging(){{
  13. setName("hilton");
  14. setType("hotel");
  15. }});
  16. tableView.setItems(loggings);
  17. }
  18. }

代码示例来源:origin: org.geotools/gt-metadata

  1. children[i] = new Logging(logging, name);
  2. logging.children = children;

代码示例来源:origin: org.geotools/gt2-metadata

  1. children[i] = new Logging(logging, name);
  2. logging.children = children;

相关文章