├── swing ├── .gitignore ├── javamoney-ez │ ├── common │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── javamoney │ │ │ │ │ │ └── examples │ │ │ │ │ │ └── ez │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── net │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ └── ProxyConnectionTypeKeys.java │ │ │ │ │ │ ├── gui │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── CheckBox.java │ │ │ │ │ │ ├── RadioButton.java │ │ │ │ │ │ └── Frame.java │ │ │ │ │ │ ├── utility │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ └── LookAndFeelHelper.java │ │ │ │ │ │ ├── IconHolder.java │ │ │ │ │ │ └── CommonConstants.java │ │ │ │ └── resources │ │ │ │ │ └── org │ │ │ │ │ └── javamoney │ │ │ │ │ └── examples │ │ │ │ │ └── ez │ │ │ │ │ └── common │ │ │ │ │ ├── i18n │ │ │ │ │ ├── fin.properties │ │ │ │ │ ├── eng.properties │ │ │ │ │ ├── ita.properties │ │ │ │ │ ├── por.properties │ │ │ │ │ └── rus.properties │ │ │ │ │ └── resources │ │ │ │ │ ├── Search.png │ │ │ │ │ ├── DialogAccept.png │ │ │ │ │ ├── DialogCancel.png │ │ │ │ │ ├── SearchClear.png │ │ │ │ │ ├── SearchNoText.png │ │ │ │ │ ├── SortColumnUp.png │ │ │ │ │ ├── SearchWithMenu.png │ │ │ │ │ ├── SortColumnDown.png │ │ │ │ │ └── SearchClearPressed.png │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── javamoney │ │ │ │ └── examples │ │ │ │ └── ez │ │ │ │ └── common │ │ │ │ └── gui │ │ │ │ └── LinkTest.java │ │ └── pom.xml │ ├── money │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── javamoney │ │ │ │ │ │ └── examples │ │ │ │ │ │ └── ez │ │ │ │ │ │ └── money │ │ │ │ │ │ ├── gui │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ ├── AccountChooserModel.java │ │ │ │ │ │ │ │ ├── ReminderModel.java │ │ │ │ │ │ │ │ ├── SplitModel.java │ │ │ │ │ │ │ │ └── TransferTotalModel.java │ │ │ │ │ │ │ └── comparator │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ └── AccountChooserComparator.java │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ ├── IncomePanel.java │ │ │ │ │ │ │ │ ├── ExpensesPanel.java │ │ │ │ │ │ │ │ └── GeneralOptionsPanel.java │ │ │ │ │ │ │ └── WebReportDialog.java │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ ├── home │ │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ │ ├── totals │ │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ │ ├── register │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ ├── FormFieldKeys.java │ │ │ │ │ │ │ │ ├── IncomeFactory.java │ │ │ │ │ │ │ │ └── ExpenseFactory.java │ │ │ │ │ │ │ ├── ViewKeys.java │ │ │ │ │ │ │ └── View.java │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── chooser │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ └── GUIConstants.java │ │ │ │ │ │ ├── report │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ └── CategoryReportSortByKeys.java │ │ │ │ │ │ ├── utility │ │ │ │ │ │ └── package.html │ │ │ │ │ │ ├── locale │ │ │ │ │ │ └── package.html │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── total │ │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ │ ├── transaction │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ └── TransactionFilterFieldKeys.java │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ └── SelectableElement.java │ │ │ │ │ │ ├── persisted │ │ │ │ │ │ │ ├── payee │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ ├── Payee.java │ │ │ │ │ │ │ │ └── PayeeCollection.java │ │ │ │ │ │ │ ├── account │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ └── AccountCollection.java │ │ │ │ │ │ │ ├── category │ │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ │ ├── reminder │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ └── ReminderCollection.java │ │ │ │ │ │ │ ├── transaction │ │ │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ │ │ └── TransactionSet.java │ │ │ │ │ │ │ └── package.html │ │ │ │ │ │ └── package.html │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── DialogCanceledException.java │ │ │ │ │ │ └── NoAccountForImportException.java │ │ │ │ │ │ ├── importexport │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── ImportExportTypeKeys.java │ │ │ │ │ │ ├── ImportExportFormatKeys.java │ │ │ │ │ │ ├── OFXConstants.java │ │ │ │ │ │ └── CSVConstants.java │ │ │ │ │ │ └── FileKeys.java │ │ │ │ └── resources │ │ │ │ │ └── org │ │ │ │ │ └── javamoney │ │ │ │ │ └── examples │ │ │ │ │ └── ez │ │ │ │ │ └── money │ │ │ │ │ ├── resources │ │ │ │ │ ├── Date.png │ │ │ │ │ ├── Actions.png │ │ │ │ │ ├── ArrowUp.png │ │ │ │ │ ├── Filter.png │ │ │ │ │ ├── Warning.png │ │ │ │ │ ├── ArrowBack.png │ │ │ │ │ ├── ArrowDown.png │ │ │ │ │ ├── CheckBox.png │ │ │ │ │ ├── LabelBlue.png │ │ │ │ │ ├── LabelGray.png │ │ │ │ │ ├── LabelNone.png │ │ │ │ │ ├── LabelRed.png │ │ │ │ │ ├── MenuArrow.png │ │ │ │ │ ├── ViewsHome.png │ │ │ │ │ ├── ArrowForward.png │ │ │ │ │ ├── DialogExport.png │ │ │ │ │ ├── DialogFilter.png │ │ │ │ │ ├── DialogImport.png │ │ │ │ │ ├── DialogReport.png │ │ │ │ │ ├── DialogSplit.png │ │ │ │ │ ├── HomeSpacer.png │ │ │ │ │ ├── LabelGreen.png │ │ │ │ │ ├── LabelOrange.png │ │ │ │ │ ├── LabelPurple.png │ │ │ │ │ ├── LabelYellow.png │ │ │ │ │ ├── PieChartBlue.png │ │ │ │ │ ├── PieChartGray.png │ │ │ │ │ ├── PieChartRed.png │ │ │ │ │ ├── ViewsBudgets.png │ │ │ │ │ ├── ViewsTotals.png │ │ │ │ │ ├── WindowsLogo.png │ │ │ │ │ ├── WindowsLogo2.png │ │ │ │ │ ├── DialogPassword.png │ │ │ │ │ ├── FormNextCheck.png │ │ │ │ │ ├── HomeBackground.png │ │ │ │ │ ├── HomeTileHeader.png │ │ │ │ │ ├── HomeTileTypes.png │ │ │ │ │ ├── PieChartGreen.png │ │ │ │ │ ├── PieChartOrange.png │ │ │ │ │ ├── WindowsBanner.png │ │ │ │ │ ├── WindowsBanner2.jpg │ │ │ │ │ ├── WindowsBanner2.png │ │ │ │ │ ├── DialogUninstall.png │ │ │ │ │ ├── HomeTileSummary.png │ │ │ │ │ ├── PieChartRedLegend.png │ │ │ │ │ ├── PreferencesPayees.png │ │ │ │ │ ├── TableReconciled.png │ │ │ │ │ ├── DialogReminderAlarm.png │ │ │ │ │ ├── PieChartBlueLegend.png │ │ │ │ │ ├── PieChartGrayLegend.png │ │ │ │ │ ├── PieChartGreenLegend.png │ │ │ │ │ ├── PreferencesAccounts.png │ │ │ │ │ ├── PreferencesGeneral.png │ │ │ │ │ ├── PreferencesNetwork.png │ │ │ │ │ ├── DialogEditTransactions.png │ │ │ │ │ ├── PieChartOrangeLegend.png │ │ │ │ │ ├── PreferencesCategories.png │ │ │ │ │ └── PreferencesReminders.png │ │ │ │ │ └── i18n │ │ │ │ │ ├── fin.properties │ │ │ │ │ ├── ita.properties │ │ │ │ │ └── por.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── javamoney │ │ │ │ └── examples │ │ │ │ └── ez │ │ │ │ └── money │ │ │ │ └── model │ │ │ │ └── DataElementTest.java │ │ └── pom.xml │ ├── README.md │ └── pom.xml └── README.md ├── web ├── .gitignore ├── README.md ├── jsf-money │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── webapp │ │ │ ├── WEB-INF │ │ │ │ ├── beans.xml │ │ │ │ └── web.xml │ │ │ ├── index.html │ │ │ └── index.xhtml │ │ │ └── java │ │ │ └── javamoneyexamples │ │ │ └── jsf │ │ │ └── money │ │ │ ├── exchange │ │ │ ├── ExchangeRateProducer.java │ │ │ └── ExchangeType.java │ │ │ ├── converter │ │ │ ├── MonetaryAmountConverter.java │ │ │ ├── DefaultMonetaryAmountConverter.java │ │ │ └── OutMonetaryAmountConverter.java │ │ │ ├── model │ │ │ ├── Product.java │ │ │ └── ExchangeBean.java │ │ │ └── controller │ │ │ ├── ProductMB.java │ │ │ └── ExchangeMB.java │ └── README.md ├── jax-rs-money │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ └── beans.xml │ ├── web.xml │ └── src │ │ └── main │ │ ├── webapp │ │ └── index.html │ │ └── java │ │ └── org │ │ └── javamoney │ │ └── examples │ │ └── jaxrs │ │ ├── infrastructure │ │ ├── ApplicationConfig.java │ │ ├── store │ │ │ ├── ProductJson.java │ │ │ ├── ProductReaderProvider.java │ │ │ └── ProductWriterProvider.java │ │ ├── bank │ │ │ ├── HistoryBankAccountJS.java │ │ │ ├── BankAccountReaderProvider.java │ │ │ ├── BankAccountJS.java │ │ │ └── BankAccountWriterProvider.java │ │ ├── MonetaryAmountReaderProvider.java │ │ └── MonetaryAmountWriterProvider.java │ │ ├── currency │ │ ├── Europe.java │ │ ├── Argentina.java │ │ ├── Brazil.java │ │ ├── America.java │ │ └── CurrenciesFactory.java │ │ ├── bank │ │ ├── HistoryBankAccount.java │ │ └── FinancialActions.java │ │ ├── model │ │ ├── BankAccount.java │ │ └── Product.java │ │ ├── resources │ │ ├── store │ │ │ ├── Mock.java │ │ │ ├── BrazilStoreCommerce.java │ │ │ ├── EuropeStoreCommerce.java │ │ │ ├── AmericaStoreCommerce.java │ │ │ ├── AgentinaStoreCommerce.java │ │ │ └── Store.java │ │ └── bank │ │ │ └── InternetBanking.java │ │ └── ecommerce │ │ └── EcommerceFactory.java ├── javamoney-payment-cdi-event │ ├── .gitignore │ └── src │ │ └── main │ │ ├── webapp │ │ ├── resources │ │ │ ├── gfx │ │ │ │ ├── banner.png │ │ │ │ ├── triplebrand_jcpwildflyjakartaee.png │ │ │ │ └── triplebrand_jcpwildflyjakartaee.xcf │ │ │ └── css │ │ │ │ └── screen.css │ │ ├── index.html │ │ └── WEB-INF │ │ │ ├── beans.xml │ │ │ └── faces-config.xml │ │ └── java │ │ └── org │ │ └── javamoney │ │ └── examples │ │ └── cdi │ │ └── payment │ │ ├── handler │ │ ├── IDebitEventObserver.java │ │ └── ICreditEventObserver.java │ │ ├── qualifiers │ │ ├── Debit.java │ │ ├── Amount.java │ │ └── Credit.java │ │ └── resources │ │ └── Resources.java └── pom.xml ├── javafx ├── money-fxdemo │ ├── src │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── i18n │ │ │ │ │ └── translation.properties │ │ │ │ ├── images │ │ │ │ │ ├── javamoney.png │ │ │ │ │ └── javamoney_s.png │ │ │ │ └── samples │ │ │ │ │ ├── ExchangeRates.javatxt │ │ │ │ │ ├── CurrencyConversion.javatxt │ │ │ │ │ ├── CreateAmounts.javatxt │ │ │ │ │ ├── Extensions.javatxt │ │ │ │ │ ├── AmountArithmetics.javatxt │ │ │ │ │ ├── FormattingAnAmount.javatxt │ │ │ │ │ └── CreateCurrencies.javatxt │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── javamoney │ │ │ │ └── examples │ │ │ │ └── fxdemo │ │ │ │ ├── widgets │ │ │ │ ├── RateTypeSelector.java │ │ │ │ ├── AbstractSingleSamplePane.java │ │ │ │ └── CurrencySelector.java │ │ │ │ └── core │ │ │ │ └── CreateAmountsSamplePane.fxml │ │ ├── test │ │ │ └── java │ │ │ │ └── do-not-delete-me.txt │ │ └── etc │ │ │ └── FXDemo-jar.jardesc │ ├── MANIFEST.MF │ ├── .gitignore │ ├── nbactions.xml │ ├── nb-configuration.xml │ └── pom.xml ├── .gitignore ├── README.md ├── money-javafx-binding │ ├── .gitignore │ └── src │ │ ├── main │ │ ├── deploy │ │ │ ├── icon.png │ │ │ └── splash.jpg │ │ ├── resources │ │ │ ├── images │ │ │ │ └── background.jpg │ │ │ ├── log4j.xml │ │ │ ├── styles │ │ │ │ └── styles.css │ │ │ └── fxml │ │ │ │ └── hello.fxml │ │ └── java │ │ │ └── org │ │ │ └── javamoney │ │ │ ├── jfx │ │ │ ├── value │ │ │ │ ├── package-info.java │ │ │ │ ├── WritableMonetaryValue.java │ │ │ │ └── ObservableMonetaryValue.java │ │ │ ├── property │ │ │ │ ├── package-info.java │ │ │ │ ├── ReadOnlyMonetaryProperty.java │ │ │ │ └── MonetaryProperty.java │ │ │ └── binding │ │ │ │ ├── MonetaryExpression.java │ │ │ │ └── MonetaryBinding.java │ │ │ └── examples │ │ │ └── javafx │ │ │ ├── Bill.java │ │ │ ├── BindingApp.java │ │ │ ├── Main.java │ │ │ └── BindingController.java │ │ └── test │ │ └── java │ │ └── org │ │ └── javamoney │ │ └── examples │ │ └── javafx │ │ └── BillTest.java └── src │ ├── site │ ├── resources │ │ └── images │ │ │ ├── NB7_JavaFX_2.png │ │ │ ├── NB7_JavaFX_3.png │ │ │ ├── Eclipse_JRE8_0.png │ │ │ ├── Eclipse_JRE8_1.png │ │ │ ├── Eclipse_JRE8_2.png │ │ │ └── Eclipse_JRE8_0_1.png │ └── site.xml │ └── etc │ └── javafx examples install.launch ├── console ├── .gitignore ├── javamoney-console-java11 │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── resources │ │ │ └── javamoney.properties │ │ │ └── java │ │ │ ├── org │ │ │ └── javamoney │ │ │ │ └── examples │ │ │ │ └── console │ │ │ │ └── java11 │ │ │ │ ├── format │ │ │ │ └── FormattingAmountsBRL.java │ │ │ │ ├── functional │ │ │ │ ├── CreateCurrencyUnit.java │ │ │ │ └── CreateMonetaryCurrency.java │ │ │ │ └── convert │ │ │ │ └── BrokenECBCurrentRateProvider.java │ │ │ └── module-info.java │ └── pom.xml ├── javamoney-console-java8 │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── resources │ │ │ └── javamoney.properties │ │ │ └── java │ │ │ └── org │ │ │ └── javamoney │ │ │ └── examples │ │ │ └── console │ │ │ └── java8 │ │ │ ├── functional │ │ │ ├── CreateCurrencyUnit.java │ │ │ └── CreateMonetaryCurrency.java │ │ │ ├── format │ │ │ └── FormattingAmountsBRL.java │ │ │ └── core │ │ │ └── CurrenciesPlayWithProviders.java │ └── pom.xml ├── javamoney-console-convert │ ├── src │ │ ├── etc │ │ │ └── README │ │ └── main │ │ │ ├── resources │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── javax.money.spi.CurrencyProviderSpi │ │ │ └── java │ │ │ └── org │ │ │ └── javamoney │ │ │ └── examples │ │ │ └── console │ │ │ └── convert │ │ │ └── provider │ │ │ └── BrokenECBCurrentRateProvider.java │ └── .gitignore └── pom.xml ├── .gitignore ├── README.md ├── .circleci └── config.yml └── src └── etc └── javamoney-examples clean install.launch /swing/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /swing/javamoney-ez/common/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /.project 3 | /target 4 | -------------------------------------------------------------------------------- /javafx/money-fxdemo/src/main/resources/i18n/translation.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javafx/money-fxdemo/src/test/java/do-not-delete-me.txt: -------------------------------------------------------------------------------- 1 | Placeholder -------------------------------------------------------------------------------- /javafx/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.externalToolBuilders 4 | -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- 1 | web 2 | ================== 3 | 4 | JSR 354 Web Examples -------------------------------------------------------------------------------- /javafx/README.md: -------------------------------------------------------------------------------- 1 | javafx 2 | ================== 3 | 4 | JSR 354 JavaFX Examples -------------------------------------------------------------------------------- /web/jsf-money/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /target 3 | /.classpath 4 | /.project 5 | -------------------------------------------------------------------------------- /console/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | /bin 6 | -------------------------------------------------------------------------------- /swing/README.md: -------------------------------------------------------------------------------- 1 | Swing RCP Examples 2 | ================== 3 | 4 | JSR 354 Examples for Swing 5 | -------------------------------------------------------------------------------- /web/jax-rs-money/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /console/javamoney-console-java11/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | -------------------------------------------------------------------------------- /console/javamoney-console-java8/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | -------------------------------------------------------------------------------- /console/javamoney-console-convert/src/etc/README: -------------------------------------------------------------------------------- 1 | This example is based on Moneta 1.0.1 (not yet released) -------------------------------------------------------------------------------- /javafx/money-fxdemo/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: org.javamoney.examples.fxdemo.FXDemo 3 | 4 | -------------------------------------------------------------------------------- /console/javamoney-console-convert/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | /.resourceCache/ 6 | -------------------------------------------------------------------------------- /javafx/money-fxdemo/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /target 3 | /.classpath 4 | /.project 5 | /target 6 | /bin 7 | /.resourceCache/ 8 | -------------------------------------------------------------------------------- /web/javamoney-payment-cdi-event/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | /bin 6 | /.tern-project 7 | /.resourceCache/ 8 | -------------------------------------------------------------------------------- /console/javamoney-console-java11/src/main/resources/javamoney.properties: -------------------------------------------------------------------------------- 1 | #Currency Conversion 2 | conversion.default-chain=IDENT,ECB,IMF,ECB-HIST,ECB-HIST90 -------------------------------------------------------------------------------- /console/javamoney-console-java8/src/main/resources/javamoney.properties: -------------------------------------------------------------------------------- 1 | #Currency Conversion 2 | conversion.default-chain=IDENT,ECB,IMF,ECB-HIST,ECB-HIST90 -------------------------------------------------------------------------------- /javafx/money-javafx-binding/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /.project 5 | /build.xml 6 | /nb-configuration.xml 7 | /target 8 | /bin 9 | -------------------------------------------------------------------------------- /javafx/src/site/resources/images/NB7_JavaFX_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/NB7_JavaFX_2.png -------------------------------------------------------------------------------- /javafx/src/site/resources/images/NB7_JavaFX_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/NB7_JavaFX_3.png -------------------------------------------------------------------------------- /javafx/money-javafx-binding/src/main/deploy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/money-javafx-binding/src/main/deploy/icon.png -------------------------------------------------------------------------------- /javafx/src/site/resources/images/Eclipse_JRE8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/Eclipse_JRE8_0.png -------------------------------------------------------------------------------- /javafx/src/site/resources/images/Eclipse_JRE8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/Eclipse_JRE8_1.png -------------------------------------------------------------------------------- /javafx/src/site/resources/images/Eclipse_JRE8_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/Eclipse_JRE8_2.png -------------------------------------------------------------------------------- /console/javamoney-console-convert/src/main/resources/META-INF/services/javax.money.spi.CurrencyProviderSpi: -------------------------------------------------------------------------------- 1 | org.javamoney.examples.console.convert.spi.GeeConCurrencyProvider -------------------------------------------------------------------------------- /javafx/money-javafx-binding/src/main/deploy/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/money-javafx-binding/src/main/deploy/splash.jpg -------------------------------------------------------------------------------- /javafx/src/site/resources/images/Eclipse_JRE8_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/src/site/resources/images/Eclipse_JRE8_0_1.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/java/org/javamoney/examples/ez/common/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Contains generic classes. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /javafx/money-fxdemo/src/main/resources/images/javamoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/money-fxdemo/src/main/resources/images/javamoney.png -------------------------------------------------------------------------------- /javafx/money-fxdemo/src/main/resources/images/javamoney_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/money-fxdemo/src/main/resources/images/javamoney_s.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/java/org/javamoney/examples/ez/common/net/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to networking. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/table/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to tables. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/report/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to reports. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/utility/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes for simplifying tasks. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /javafx/money-javafx-binding/src/main/resources/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/javafx/money-javafx-binding/src/main/resources/images/background.jpg -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/java/org/javamoney/examples/ez/common/gui/table/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to tables. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/java/org/javamoney/examples/ez/common/utility/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes for simplifying tasks. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/dialog/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to dialogs. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/view/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the UI views. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/java/org/javamoney/examples/ez/common/gui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the user interface. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the user interface. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/locale/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the user's locale. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/dynamic/total/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to totals. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains generic classes pertaining to the application. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/banner.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/chooser/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to choosing things. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/table/model/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to table models. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/view/home/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the home view. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/view/totals/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the totals view. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/payee/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to payees. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /javafx/money-javafx-binding/src/main/java/org/javamoney/jfx/value/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JSR 354 JavaFX Binding Example 3 | */ 4 | /** 5 | * @author Werner Keil 6 | * 7 | */ 8 | package org.javamoney.jfx.value; -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/exception/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes that other classes use to log or throw. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/view/register/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the register view. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/importexport/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to importing and exporting. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes that represent the fundamental data elements. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/account/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to accounts. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/category/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to categories. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/reminder/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to reminders. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | .project 3 | 4 | .settings/ 5 | .resourceCache/ 6 | nbproject/ 7 | target/ 8 | .classpath 9 | *.iml 10 | .idea/ 11 | .directory 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.ear -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/table/comparator/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to comparing table data. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/dynamic/transaction/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to transactions. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/transaction/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to transactions. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /javafx/money-javafx-binding/src/main/java/org/javamoney/jfx/property/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JSR 354 JavaFX Binding Example 3 | */ 4 | /** 5 | * @author Werner Keil 6 | * 7 | */ 8 | package org.javamoney.jfx.property; -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/gui/dialog/preferences/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes pertaining to the preferences dialog. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/persisted/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes that represent data elements that are saved. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/java/org/javamoney/examples/ez/money/model/dynamic/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains classes that represent data elements that are generated at runtime. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Date.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/i18n/fin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/i18n/fin.properties -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/fin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/fin.properties -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/ita.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/ita.properties -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/por.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/i18n/por.properties -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Actions.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowUp.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Filter.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/Warning.png -------------------------------------------------------------------------------- /web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/triplebrand_jcpwildflyjakartaee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/triplebrand_jcpwildflyjakartaee.png -------------------------------------------------------------------------------- /web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/triplebrand_jcpwildflyjakartaee.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/web/javamoney-payment-cdi-event/src/main/webapp/resources/gfx/triplebrand_jcpwildflyjakartaee.xcf -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/Search.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowBack.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowDown.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/CheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/CheckBox.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelBlue.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelGray.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelNone.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelRed.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/MenuArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/MenuArrow.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsHome.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ArrowForward.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogExport.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogFilter.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogImport.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogReport.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogSplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogSplit.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeSpacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeSpacer.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelGreen.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelOrange.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelPurple.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/LabelYellow.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartBlue.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGray.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartRed.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsBudgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsBudgets.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsTotals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/ViewsTotals.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsLogo.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsLogo2.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/DialogAccept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/DialogAccept.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/DialogCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/DialogCancel.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchClear.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchNoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchNoText.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SortColumnUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SortColumnUp.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogPassword.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/FormNextCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/FormNextCheck.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeBackground.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileHeader.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileTypes.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGreen.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartOrange.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner2.jpg -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/WindowsBanner2.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchWithMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchWithMenu.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SortColumnDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SortColumnDown.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogUninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogUninstall.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/HomeTileSummary.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartRedLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartRedLegend.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesPayees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesPayees.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/TableReconciled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/TableReconciled.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogReminderAlarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogReminderAlarm.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartBlueLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartBlueLegend.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGrayLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGrayLegend.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGreenLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartGreenLegend.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesAccounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesAccounts.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesGeneral.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesNetwork.png -------------------------------------------------------------------------------- /swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchClearPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/common/src/main/resources/org/javamoney/examples/ez/common/resources/SearchClearPressed.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogEditTransactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/DialogEditTransactions.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartOrangeLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PieChartOrangeLegend.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesCategories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesCategories.png -------------------------------------------------------------------------------- /swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesReminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaMoney/javamoney-examples/HEAD/swing/javamoney-ez/money/src/main/resources/org/javamoney/examples/ez/money/resources/PreferencesReminders.png -------------------------------------------------------------------------------- /web/jsf-money/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 |
20 | * Note: This method should be called prior to the toolkit being
21 | * loaded, which is prior to the creation of any components.
22 | */
23 | public
24 | static
25 | void
26 | initializeLookAndFeel()
27 | {
28 | try
29 | {
30 | // Set Mac specific properties.
31 | System.getProperties().setProperty("apple.laf.useScreenMenuBar", "true");
32 |
33 | setLookAndFeel(getSystemLookAndFeelClassName());
34 | }
35 | catch(Exception exception)
36 | {
37 | // Ignored.
38 | }
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/console/javamoney-console-java11/src/main/java/org/javamoney/examples/console/java11/format/FormattingAmountsBRL.java:
--------------------------------------------------------------------------------
1 | package org.javamoney.examples.console.java11.format;
2 |
3 | import java.util.Locale;
4 |
5 | import javax.money.Monetary;
6 | import javax.money.format.AmountFormatQueryBuilder;
7 | import javax.money.format.MonetaryFormats;
8 |
9 | import org.javamoney.moneta.Money;
10 | import org.javamoney.moneta.format.CurrencyStyle;
11 |
12 | public class FormattingAmountsBRL {
13 |
14 | public static void main(String[] args) {
15 |
16 | var real = Monetary.getCurrency("BRL");
17 |
18 | var ma1 = Money.of(100000, real);
19 | var ma2 = Money.of(200, real);
20 |
21 | var sum = ma1.add(ma2);
22 | System.out.println(sum);
23 |
24 | var format = MonetaryFormats.getAmountFormat(new Locale("pt", "BR"));
25 |
26 | System.out.println(format.format(ma1));
27 |
28 | var format2 = MonetaryFormats.getAmountFormat(
29 | AmountFormatQueryBuilder.of(new Locale ("pt", "BR"))
30 | .set(CurrencyStyle.NAME) // options(CODE,NAME,NUMERIC_CODE,SYMBOL)
31 | .build()
32 | );
33 |
34 | System.out.println(format2.format(sum));
35 | }
36 | }
--------------------------------------------------------------------------------
/console/javamoney-console-java11/src/main/java/module-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2012, 2025, Werner Keil and others by the @author tag.
3 |
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
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, 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.
15 | */
16 | module org.javamoney.examples.console.eleven {
17 | exports org.javamoney.examples.console.java11.convert;
18 | exports org.javamoney.examples.console.java11.core;
19 | exports org.javamoney.examples.console.java11.format;
20 |
21 | opens org.javamoney.examples.console.java11.convert;
22 |
23 | requires transitive java.money;
24 | requires org.javamoney.moneta;
25 | requires org.javamoney.moneta.convert;
26 | requires org.javamoney.moneta.convert.ecb;
27 | }
--------------------------------------------------------------------------------
/javafx/src/etc/javafx examples install.launch:
--------------------------------------------------------------------------------
1 |
2 | Example using JSF with moneyAPI, with two simple samples.
32 | * Example injection on a managed bean field:
33 | *
24 |
27 |