コード例 #1
0
ファイル: XmlLineFactory.java プロジェクト: aht-group/ofx
 public static Line bottom() {
   Line xml = new Line();
   xml.setOrientation(Orientation.bottom.toString());
   return xml;
 }
コード例 #2
0
ファイル: XmlLineFactory.java プロジェクト: aht-group/ofx
 public static Line top() {
   Line xml = new Line();
   xml.setOrientation(Orientation.top.toString());
   return xml;
 }