📄 countrypath.java
字号:
package com.sillysoft.lux.util;import com.sillysoft.lux.Country;//// CountryPath.java//// Created by dustin on Thu Nov 08 2001.// /**This class represents a path of connected countries. It is used to store paths through the graph of countries.*/public class CountryPath extends CountryElement{private int[] history;public CountryPath( Country country, int newValue, int[] newHistory) { next = null; countryCode = country.getCode(); orderValue = newValue; history = newHistory; } public int[] getHistory() { return history; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -