Skip to content

Commit b170fe7

Browse files
committed
Updated JavaDoc
1 parent f4d3ef9 commit b170fe7

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

src/main/java/org/javamoney/moneta/format/FormatToken.java

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/*
2-
* CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE
3-
* CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT.
4-
* PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY
5-
* DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE
6-
* AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE"
7-
* BUTTON AT THE BOTTOM OF THIS PAGE.
2+
* Copyright (c) 2012, 2013, Credit Suisse (Anatole Tresch), Werner Keil.
83
*
9-
* Specification: JSR-354 Money and Currency API ("Specification")
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
5+
* use this file except in compliance with the License. You may obtain a copy of
6+
* the License at
107
*
11-
* Copyright (c) 2012-2013, Credit Suisse All rights reserved.
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
* License for the specific language governing permissions and limitations under
14+
* the License.
1215
*/
1316
package org.javamoney.moneta.format;
1417

@@ -33,6 +36,7 @@
3336
* immutable.
3437
*
3538
* @author Anatole Tresch
39+
* @author Werner Keil
3640
*/
3741
public interface FormatToken {
3842

src/main/java/org/javamoney/moneta/format/LiteralToken.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@
2727
* This class is thread safe, immutable and serializable.
2828
*
2929
* @author Anatole Tresch
30+
* @author Werner Keil
3031
*
3132
* @param <T>
3233
* The item type.
3334
*/
3435
final class LiteralToken implements FormatToken {
35-
36+
// TODO does not implement Serializable
37+
3638
/**
3739
* The literal part.
3840
*/

src/main/java/org/javamoney/moneta/format/ParseContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* This class is mutable and intended for use by a single thread. A new instance
2424
* is created for each parse.
2525
*/
26-
// TODO ItemFormatBuilder does not exist any more. Fix JavaDoc
26+
// FIXME ItemFormatBuilder does not exist any more. Fix JavaDoc
2727
public final class ParseContext {
2828
/** The current position of parsing. */
2929
private int index;

0 commit comments

Comments
 (0)