Skip to content

Commit a76f119

Browse files
committed
1 parent 32fb1fb commit a76f119

File tree

23 files changed

+84
-27
lines changed

23 files changed

+84
-27
lines changed

console/functional-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>javamoney-examples-console</artifactId>
66
<groupId>org.javamoney.examples.console</groupId>
7-
<version>1.0-RC2</version>
7+
<version>1.0-RC3</version>
88
</parent>
99

1010
<artifactId>functional-example</artifactId>

console/javamoney-console-java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.javamoney.examples.console</groupId>
66
<artifactId>javamoney-examples-console</artifactId>
7-
<version>1.0-RC2</version>
7+
<version>1.0-RC3</version>
88
</parent>
99
<artifactId>javamoney-console-java8</artifactId>
1010
<name>JavaMoney Java 8 Console Examples</name>

console/javamoney-console-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.javamoney.examples.console</groupId>
55
<artifactId>javamoney-examples-console</artifactId>
6-
<version>1.0-RC2</version>
6+
<version>1.0-RC3</version>
77
</parent>
88
<artifactId>javamoney-console-simple</artifactId>
99
<name>JavaMoney Simple Console Examples</name>

console/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.javamoney.examples</groupId>
66
<artifactId>javamoney-examples</artifactId>
7-
<version>1.0-RC2</version>
7+
<version>1.0-RC3</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<groupId>org.javamoney.examples.console</groupId>

javafx/money-fxdemo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.javamoney.examples</groupId>
77
<artifactId>javamoney-examples-javafx</artifactId>
8-
<version>1.0-RC2</version>
8+
<version>1.0-RC3</version>
99
</parent>
1010
<organization>
1111
<name>JSR 354</name>

javafx/money-fxdemo/src/main/java/org/javamoney/examples/fxdemo/ComponentUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2013, Credit Suisse (Anatole Tresch), Werner Keil.
2+
* Copyright (c) 2012, 2015, Credit Suisse (Anatole Tresch), Werner Keil.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

javafx/money-fxdemo/src/main/java/org/javamoney/examples/fxdemo/FXDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2013, Credit Suisse (Anatole Tresch), Werner Keil.
2+
* Copyright (c) 2012, 2015, Credit Suisse (Anatole Tresch), Werner Keil.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

javafx/money-fxdemo/src/main/java/org/javamoney/examples/fxdemo/exchange/ConvertAmount.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (c) 2012, 2015, Credit Suisse (Anatole Tresch), Werner Keil.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
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,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
* Contributors:
17+
* Anatole Tresch - initial implementation
18+
* Werner Keil - extensions and adaptions.
19+
*/
120
package org.javamoney.examples.fxdemo.exchange;
221

322
import java.io.PrintWriter;

javafx/money-fxdemo/src/main/java/org/javamoney/examples/fxdemo/exchange/GetExchangeRate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private void printSummary(ExchangeRate rate,
9393
pw.println("Base Currency: " + rate.getBaseCurrency());
9494
pw.println("Term Currency: " + rate.getCurrency());
9595
pw.println("Factor: " + rate.getFactor());
96-
pw.println("Context: " + rate.getConversionContext()); // .getContext());
96+
pw.println("Context: " + rate.getContext());
9797
pw.println("Derived: " + rate.isDerived());
9898
if (rate.isDerived()) {
9999
pw.println("Chain: "

javafx/money-fxdemo/src/main/java/org/javamoney/examples/fxdemo/format/FormatAmount.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (c) 2012, 2015, Credit Suisse (Anatole Tresch), Werner Keil.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
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,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
* Contributors:
17+
* Anatole Tresch - initial implementation
18+
* Werner Keil - extensions and adaptions.
19+
*/
120
package org.javamoney.examples.fxdemo.format;
221

322
import java.io.PrintWriter;

0 commit comments

Comments
 (0)