Method
parse
(
CharSequence text,
ParsePosition status,
AttributeQuery attributes
)
Source from the content-addressed store, hash-verified
| 169 | } |
| 170 | |
| 171 | @Override |
| 172 | public Meridiem parse( |
| 173 | CharSequence text, |
| 174 | ParsePosition status, |
| 175 | AttributeQuery attributes |
| 176 | ) { |
| 177 | |
| 178 | Meridiem m = parseAmPm(text, status); |
| 179 | |
| 180 | if (m == null) { |
| 181 | m = this.accessor(attributes).parse(text, status, this.getType(), attributes); |
| 182 | } |
| 183 | |
| 184 | return m; |
| 185 | |
| 186 | } |
| 187 | |
| 188 | @Override |
| 189 | public void print( |
Callers
nothing calls this directly
Tested by
no test coverage detected