?? country.java
字號:
package collections;
/**
* Title : Base Dict Class
* Description : here Description is the function of class, here maybe multirows
* @author <a href="mailto:sunpeng@china.freeborders">kevin</a>
* @Version 1.0
*/
/**
* Class description goes here.
* @version 1.0 2005-9-22
* @author kevin
*/
public class Country implements Comparable
{
private String name;
public Country(String n)
{
this.name = n;
}
/**
* @return Returns the name.
*/
public String getName()
{
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name)
{
this.name = name;
}
public int compareTo(Object obj)
{
Country c = (Country)obj;
return c.getName().compareTo(this.getName());
}
public int hashCode()
{
return this.getName().hashCode() ;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -