getMin() 공개 메소드

public getMin ( ) : int
리턴 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
 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();
 }