This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#main { | |
width: 690px; | |
} | |
.date { | |
width: 660px; | |
position: static; | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: #DDD; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pane: ActionPane { | |
prefHeight = 400.0 | |
prefWidth = 600.0 | |
children { | |
hbox: HBox { | |
alignment = "CENTER" | |
prefHeight = 50.0 | |
prefWidth = 572.0 | |
spacing = 20.0 | |
children { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rabitarochan.mongodb; | |
import org.bson.types.Code; | |
import com.mongodb.BasicDBObject; | |
import com.mongodb.DB; | |
import com.mongodb.DBCollection; | |
import com.mongodb.DBObject; | |
import com.mongodb.Mongo; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object Test { | |
implicit def int2String(x: Int): String = x.toString | |
} | |
// defined module Test | |
import Test._ | |
val num = 123 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Xml.Serialization; | |
using System.Reflection; | |
namespace Rabitarochan.Serializer | |
{ | |
/// <summary> | |
/// オブジェクトをXMLファイルにシリアライズ/デシリアライズするクラス |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IHello { | |
public String say(); | |
} | |
public class JapaneseHello implements IHello { | |
public String say() { | |
reutrn "こんにちは"; | |
} | |
} |
NewerOlder