getSec() public method

public getSec ( ) : int
return int
コード例 #1
0
ファイル: DateTimeStr.cs プロジェクト: nomit007/f4
 internal DateTimeStr(string pattern, Locale locale, Time t)
 {
     this.pattern  = pattern;
       this.m_locale = locale;
       this.hour     = t.getHour();
       this.min      = t.getMin();
       this.sec      = t.getSec();
       this.ns       = t.getNanoSec();
 }
コード例 #2
0
ファイル: DateTimeStr.cs プロジェクト: syatanic/fantom
 internal DateTimeStr(string pattern, Locale locale, Time t)
 {
     this.pattern  = pattern;
     this.m_locale = locale;
     this.val      = t;
     this.hour     = t.getHour();
     this.min      = t.getMin();
     this.sec      = t.getSec();
     this.ns       = t.getNanoSec();
 }