?? 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; } }
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -