⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 displaypredinfo.java

📁 Libgist is an implementation of the Generalized Search Tree, a template index structure that makes i
💻 JAVA
字号:
// DisplayPredInfo.java// Copyright (c) 1998, Regents of the University of California// $Id: DisplayPredInfo.java,v 1.1 1999/06/21 00:33:01 marcel Exp $/* Structure containing predicate location and index into a color map *//* indicating preferred color for display                             */public class DisplayPredInfo {int node;int slot;int level;int color = 0;public DisplayPredInfo() {}public DisplayPredInfo(int node, int slot, int level, int color) {    this.node = node;    this.slot = slot;    this.level = level;    this.color = color;}public void setFields(int node, int slot, int level, int color) {    this.node = node;    this.slot = slot;    this.level = level;    this.color = color;}public void copyFields(DisplayPredInfo pred) {        this.node = pred.node;    this.slot = pred.slot;    this.level = pred.level;    this.color = pred.color;}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -