写真は、ハクセキレイ。顔が白く、目に黒い線が通っているのが特長だそうです。保護色でまぎれてますが、拡大して見てみてください。
日本の野鳥を分類し、一覧できるように、Javaアプリを組んでみました。
こちらです → 日本の野鳥
TreeNode list[]=node.getPath();
TreePath path=new TreePath(list);
tree.collapsePath(path);
DefaultMutableTreeNode selectedNode=
(DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
void collapseNode(DefaultMutableTreeNode n)
{
for (Enumeration e=n.postorderEnumeration(); e.hasMoreElements() ; )
{
DefaultMutableTreeNode node=(DefaultMutableTreeNode)e.nextElement();
TreeNode list[]=node.getPath();
TreePath path=new TreePath(list);
if(!node.isRoot())
{
tree.collapsePath(path);
}
}
}
ALERT: U.S. Time Zone Changes March 11, 2007
The U.S. is in the process of changing the observance of Daylight Savings Time (DST). Update your JRE.
プロジェクトごとの定数を扱うクラス Config\Constants の紹介です。 <?php namespace Config; class Constants { public const DB_USER = "linguist...