├── .gitignore ├── .project ├── README.md ├── custom-ui ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── com.wdev91.eclipse.copyright.xml │ └── org.eclipse.jdt.core.prefs ├── LICENSE ├── examples │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── atmSimulator.icu │ ├── audioPlayer.icu │ ├── calculator.icu │ ├── controlScreen.icu │ ├── controlScreen2.icu │ ├── creditCardPayment.icu │ ├── currencyConverter.icu │ ├── default.icu │ ├── employee.icu │ ├── fastFood.db │ ├── fastFood.icu │ ├── fileExplorer.icu │ ├── inputSettings.icu │ ├── library.db │ ├── library.icu │ ├── loginScreen.icu │ ├── loginScreen2.icu │ ├── loginScreen3.icu │ ├── loginScreen4.icu │ ├── loginScreen5.icu │ ├── loginScreen6.icu │ ├── mailClient.icu │ ├── meteo.icu │ ├── misc │ │ ├── .gitignore │ │ └── screenshots │ │ │ ├── audioPlayer.png │ │ │ ├── calculator.png │ │ │ ├── controlScreen.png │ │ │ ├── fileExplorer.png │ │ │ ├── helloWorld.png │ │ │ ├── loginScreen.png │ │ │ ├── mailClient.png │ │ │ ├── multiple-examples.png │ │ │ ├── multiple-examples.xcf │ │ │ └── saySOmething.png │ ├── pom.xml │ ├── restaurant.icu │ ├── saySomething.icu │ ├── saySomething2.icu │ ├── serviceAccountCreation.icu │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── xy │ │ │ │ │ └── reflect │ │ │ │ │ └── ui │ │ │ │ │ └── example │ │ │ │ │ ├── ATMSimulator.java │ │ │ │ │ ├── AudioPlayer.java │ │ │ │ │ ├── Calculator.java │ │ │ │ │ ├── ControlScreen.java │ │ │ │ │ ├── ControlScreen2.java │ │ │ │ │ ├── CreditCardPayment.java │ │ │ │ │ ├── CurrencyConverter.java │ │ │ │ │ ├── CustomUITutorial.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── FastFood.java │ │ │ │ │ ├── FileExplorer.java │ │ │ │ │ ├── HelloWorld.java │ │ │ │ │ ├── InputSettings.java │ │ │ │ │ ├── Library.java │ │ │ │ │ ├── LoginScreen.java │ │ │ │ │ ├── LoginScreen2.java │ │ │ │ │ ├── LoginScreen3.java │ │ │ │ │ ├── LoginScreen4.java │ │ │ │ │ ├── LoginScreen5.java │ │ │ │ │ ├── LoginScreen6.java │ │ │ │ │ ├── MailClient.java │ │ │ │ │ ├── Meteo.java │ │ │ │ │ ├── ReflectionUITutorial.java │ │ │ │ │ ├── Restaurant.java │ │ │ │ │ ├── SaySomething.java │ │ │ │ │ ├── SaySomething2.java │ │ │ │ │ ├── ServiceAccountCreation.java │ │ │ │ │ └── TextEditor.java │ │ │ └── resources │ │ │ │ └── xy │ │ │ │ └── reflect │ │ │ │ └── ui │ │ │ │ └── example │ │ │ │ ├── atmSimulator.jpg │ │ │ │ ├── audioPlayer-backward.png │ │ │ │ ├── audioPlayer-forward.png │ │ │ │ ├── audioPlayer-headerImage.png │ │ │ │ ├── audioPlayer-import.png │ │ │ │ ├── audioPlayer-play.png │ │ │ │ ├── audioPlayer-stop.png │ │ │ │ ├── black-background-free-wallpaper-keys-1072754.jpg │ │ │ │ ├── controlScreen-logs.gif │ │ │ │ ├── controlScreen-settings.gif │ │ │ │ ├── controlScreen-start.gif │ │ │ │ ├── controlScreen-statistics.gif │ │ │ │ ├── controlScreen2-configuration.gif │ │ │ │ ├── controlScreen2-execution.gif │ │ │ │ ├── controlScreen2-logs.gif │ │ │ │ ├── controlScreen2-statistics.gif │ │ │ │ ├── countryFlags │ │ │ │ ├── ad.png │ │ │ │ ├── ae.png │ │ │ │ ├── af.png │ │ │ │ ├── ag.png │ │ │ │ ├── ai.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── an.png │ │ │ │ ├── ao.png │ │ │ │ ├── ar.png │ │ │ │ ├── as.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── ax.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bv.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── catalonia.png │ │ │ │ ├── cc.png │ │ │ │ ├── cd.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cs.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cx.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dj.png │ │ │ │ ├── dk.png │ │ │ │ ├── dm.png │ │ │ │ ├── do.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── eh.png │ │ │ │ ├── england.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── europeanunion.png │ │ │ │ ├── fam.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fk.png │ │ │ │ ├── fm.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb.png │ │ │ │ ├── gd.png │ │ │ │ ├── ge.png │ │ │ │ ├── gf.png │ │ │ │ ├── gh.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gm.png │ │ │ │ ├── gn.png │ │ │ │ ├── gp.png │ │ │ │ ├── gq.png │ │ │ │ ├── gr.png │ │ │ │ ├── gs.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gw.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hm.png │ │ │ │ ├── hn.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── in.png │ │ │ │ ├── io.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── km.png │ │ │ │ ├── kn.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── kw.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── la.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── li.png │ │ │ │ ├── lk.png │ │ │ │ ├── lr.png │ │ │ │ ├── ls.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── me.png │ │ │ │ ├── mg.png │ │ │ │ ├── mh.png │ │ │ │ ├── mk.png │ │ │ │ ├── ml.png │ │ │ │ ├── mm.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── mq.png │ │ │ │ ├── mr.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mu.png │ │ │ │ ├── mv.png │ │ │ │ ├── mw.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── ne.png │ │ │ │ ├── nf.png │ │ │ │ ├── ng.png │ │ │ │ ├── ni.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nu.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── pg.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── pn.png │ │ │ │ ├── pr.png │ │ │ │ ├── ps.png │ │ │ │ ├── pt.png │ │ │ │ ├── pw.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── re.png │ │ │ │ ├── ro.png │ │ │ │ ├── rs.png │ │ │ │ ├── ru.png │ │ │ │ ├── rw.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sc.png │ │ │ │ ├── scotland.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── sh.png │ │ │ │ ├── si.png │ │ │ │ ├── sj.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── sm.png │ │ │ │ ├── sn.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── st.png │ │ │ │ ├── sv.png │ │ │ │ ├── sy.png │ │ │ │ ├── sz.png │ │ │ │ ├── tc.png │ │ │ │ ├── td.png │ │ │ │ ├── tf.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tj.png │ │ │ │ ├── tk.png │ │ │ │ ├── tl.png │ │ │ │ ├── tm.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── um.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── uz.png │ │ │ │ ├── va.png │ │ │ │ ├── vc.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── vu.png │ │ │ │ ├── wales.png │ │ │ │ ├── wf.png │ │ │ │ ├── ws.png │ │ │ │ ├── ye.png │ │ │ │ ├── yt.png │ │ │ │ ├── za.png │ │ │ │ ├── zm.png │ │ │ │ └── zw.png │ │ │ │ ├── creditCardPayment-discover.png │ │ │ │ ├── creditCardPayment-mastercard.png │ │ │ │ ├── creditCardPayment-proceed.png │ │ │ │ ├── creditCardPayment-visa.png │ │ │ │ ├── currencyConverter-rotate.png │ │ │ │ ├── fastFood-cart.png │ │ │ │ ├── fastFood-cocaCola.jpg │ │ │ │ ├── fastFood-drink.png │ │ │ │ ├── fastFood-menu.png │ │ │ │ ├── fastFood-sandwich.png │ │ │ │ ├── fastFood-settings.png │ │ │ │ ├── file.gif │ │ │ │ ├── fileExplorer-background.png │ │ │ │ ├── folder.gif │ │ │ │ ├── inputSettings-background.jpg │ │ │ │ ├── inputSettings-switchOff.png │ │ │ │ ├── inputSettings-switchOn.png │ │ │ │ ├── library-book.png │ │ │ │ ├── library-dashboard.png │ │ │ │ ├── library-issue.png │ │ │ │ ├── library-student.png │ │ │ │ ├── loginScreen-background.png │ │ │ │ ├── loginScreen-buttonBackground.png │ │ │ │ ├── loginScreen-centerImage.png │ │ │ │ ├── loginScreen-icon.png │ │ │ │ ├── loginScreen2-background.jpg │ │ │ │ ├── loginScreen2-buttonBackground.png │ │ │ │ ├── loginScreen3-background.jpg │ │ │ │ ├── loginScreen3-buttonBackground.png │ │ │ │ ├── loginScreen3-user.png │ │ │ │ ├── loginScreen4-background.jpeg │ │ │ │ ├── loginScreen4-banner.jpg │ │ │ │ ├── loginScreen4-buttonBackground.png │ │ │ │ ├── loginScreen4-icon.png │ │ │ │ ├── loginScreen5-buttonBackground.png │ │ │ │ ├── loginScreen6-background.jpg │ │ │ │ ├── mailClient-banner.png │ │ │ │ ├── mailClient-draft.png │ │ │ │ ├── mailClient-inbox.png │ │ │ │ ├── mailClient-sent.png │ │ │ │ ├── mailClient-trash.png │ │ │ │ ├── meteo-atmosphericPressure.png │ │ │ │ ├── meteo-background.jpg │ │ │ │ ├── meteo-cloudy.png │ │ │ │ ├── meteo-humidity.png │ │ │ │ ├── meteo-location.png │ │ │ │ ├── meteo-rainy.png │ │ │ │ ├── meteo-refresh.png │ │ │ │ ├── meteo-sunny.png │ │ │ │ ├── meteo-thermometer.png │ │ │ │ ├── meteo-windSpeed.png │ │ │ │ ├── restaurant-customers.png │ │ │ │ ├── restaurant-logOut.png │ │ │ │ ├── restaurant-menus.png │ │ │ │ ├── restaurant-orders.png │ │ │ │ ├── restaurant-packages.png │ │ │ │ ├── restaurant-settings.png │ │ │ │ ├── serviceAccountCreation-discover.png │ │ │ │ ├── serviceAccountCreation-mastercard.png │ │ │ │ ├── serviceAccountCreation-visa.png │ │ │ │ └── textEditor-background.jpg │ │ └── test │ │ │ └── java │ │ │ └── xy │ │ │ └── reflect │ │ │ └── ui │ │ │ └── MinimalTest.java │ ├── textEditor.icu │ └── unpackaged-src │ │ └── AllExamples.java ├── hs_err_pid10755.log ├── hs_err_pid12176.log ├── hs_err_pid15927.log ├── hs_err_pid16051.log ├── hs_err_pid1650.log ├── hs_err_pid17384.log ├── hs_err_pid26264.log ├── hs_err_pid26518.log ├── hs_err_pid28679.log ├── hs_err_pid29211.log ├── hs_err_pid29507.log ├── hs_err_pid2954.log ├── hs_err_pid30939.log ├── hs_err_pid31203.log ├── hs_err_pid31358.log ├── hs_err_pid4651.log ├── hs_err_pid8639.log ├── hs_err_pid8661.log ├── hs_err_pid9405.log ├── misc │ ├── banner.xcf │ ├── design.xcf │ ├── draft.txt │ ├── goodFonts │ │ ├── agenor_neue │ │ │ ├── Agenor Neue Read me.txt │ │ │ └── AgenorNeue-Regular.otf │ │ ├── sage_sans │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ └── sagesans-Regular.ttf │ │ └── xylitol │ │ │ ├── Typodermic Desktop EULA 2023.pdf │ │ │ ├── read-this.html │ │ │ ├── xylitol back.otf │ │ │ ├── xylitol down.otf │ │ │ ├── xylitol front.otf │ │ │ ├── xylitol hollow.otf │ │ │ ├── xylitol left.otf │ │ │ ├── xylitol outline.otf │ │ │ ├── xylitol right.otf │ │ │ ├── xylitol solo.otf │ │ │ ├── xylitol stripe.otf │ │ │ └── xylitol up.otf │ ├── screenshots │ │ ├── controller.png │ │ ├── customizationTools.png │ │ ├── fieldCustomization.png │ │ ├── listCustomization.png │ │ └── onlineDocumentation.png │ ├── todo.txt │ └── website │ │ ├── backlinking.txt │ │ ├── banner.png │ │ ├── java-gui-builder-icon.png │ │ └── logo.png ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── xy │ │ │ │ └── reflect │ │ │ │ └── ui │ │ │ │ ├── control │ │ │ │ └── swing │ │ │ │ │ └── customizer │ │ │ │ │ ├── CustomizationController.java │ │ │ │ │ ├── CustomizationOptions.java │ │ │ │ │ ├── CustomizationTools.java │ │ │ │ │ ├── CustomizationToolsRenderer.java │ │ │ │ │ ├── CustomizationToolsUI.java │ │ │ │ │ ├── CustomizingFieldControlPlaceHolder.java │ │ │ │ │ ├── CustomizingForm.java │ │ │ │ │ ├── CustomizingMethodControlPlaceHolder.java │ │ │ │ │ ├── MultiSwingCustomizer.java │ │ │ │ │ └── SwingCustomizer.java │ │ │ │ └── util │ │ │ │ ├── MoreSystemProperties.java │ │ │ │ └── SwingCustomizerUtils.java │ │ └── resources │ │ │ └── xy │ │ │ └── reflect │ │ │ └── ui │ │ │ └── resource │ │ │ ├── banner.png │ │ │ ├── custom.png │ │ │ └── customizations-tools.icu │ └── test │ │ ├── java │ │ └── xy │ │ │ └── reflect │ │ │ └── ui │ │ │ ├── CustomUIMinimalTest.java │ │ │ └── TestToolsMessages.java │ │ └── resources │ │ └── xy │ │ └── reflect │ │ └── ui │ │ └── words.en ├── tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── default.icu │ ├── duplicates.icu │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── xy │ │ │ │ └── reflect │ │ │ │ └── ui │ │ │ │ ├── ClassExplorerTest.java │ │ │ │ ├── CustomizationsTest.java │ │ │ │ ├── DuplicatesTest.java │ │ │ │ ├── EchoTest.java │ │ │ │ ├── EmptyObjectTest.java │ │ │ │ ├── ErrorDisplayTest.java │ │ │ │ ├── ListEmbeddedDetailsTest.java │ │ │ │ ├── ListModificationTest.java │ │ │ │ ├── MapTest.java │ │ │ │ ├── MemberNamesCollisionTest.java │ │ │ │ ├── MenuCreationTest.java │ │ │ │ ├── NullDisplayTest.java │ │ │ │ ├── PluginsTest.java │ │ │ │ ├── PolymorphismTest.java │ │ │ │ ├── SelectionTest.java │ │ │ │ ├── TableTreeModelExample.java │ │ │ │ ├── TextualStorageDataFieldControlMutationTest.java │ │ │ │ ├── TransactionsTest.java │ │ │ │ └── TransientFieldsTest.java │ │ └── test │ │ │ ├── java │ │ │ └── xy │ │ │ │ └── reflect │ │ │ │ └── ui │ │ │ │ └── TestWithAutomation.java │ │ │ └── resources │ │ │ └── xy │ │ │ └── reflect │ │ │ └── ui │ │ │ └── virtualImage.jpg │ ├── test-specifications │ │ ├── testClassExplorer.stt │ │ ├── testCustomizations.stt │ │ ├── testDuplicates.stt │ │ ├── testEcho.stt │ │ ├── testEmptyObject.stt │ │ ├── testErrorDisplay.stt │ │ ├── testJavaAwtPointUI.stt │ │ ├── testJavaLangThreadUI.stt │ │ ├── testListEmbeddedDetails.stt │ │ ├── testListModification.stt │ │ ├── testMap.stt │ │ ├── testMemberNamesCollision.stt │ │ ├── testMenuCreation.stt │ │ ├── testNullDisplay.stt │ │ ├── testPlugins.stt │ │ ├── testPolymorphism.stt │ │ ├── testSelection.stt │ │ ├── testTableTreeModelExample.stt │ │ ├── testTextualStorageDataFieldControlMutation.stt │ │ ├── testTransactions.stt │ │ └── testTransientFields.stt │ └── tmp │ │ ├── comapre1.txt │ │ └── comapre2.txt └── unpackaged-src │ ├── AudioPlayerTest.java │ ├── CommonUIDefaultsKeys.java │ ├── EditorTest.java │ ├── ExtractCustomizationsHelp.java │ ├── ReflectionUITest.java │ ├── ReflectionUITest2.java │ ├── Snippet.java │ ├── TabColors.java │ ├── TestDefaultPackage.java │ ├── TestFocus.java │ ├── TestGridBagFilling.java │ ├── TestGrouping.java │ ├── TestInfoCustomizationsLoading.java │ ├── TestInner.java │ ├── TestPrimitiveWrapperTypeEquality.java │ ├── TestSubFieldInfo.java │ ├── ThreadExplorerTest.java │ ├── UIManagerDefaults.java │ ├── app.png │ ├── baseFont.ttf │ ├── default.icu │ ├── default2.icu │ ├── fontCalligraphic.ttf │ ├── fontNice.ttf │ ├── fontReadable.ttf │ ├── fontSmooth.ttf │ ├── icon.gif │ ├── minimalistic multicolor lame gaussian blur simple background white background 1920x1200 wallpaper_www.artwallpaperhi.com_25.jpg │ ├── misc.png │ ├── screenButton1.png │ └── thread.icu └── reflection-ui ├── .gitignore ├── LICENSE ├── debian └── readme.txt ├── dev-readme.txt ├── pom.xml ├── releaseNotes.txt ├── src ├── main │ ├── java │ │ └── xy │ │ │ └── reflect │ │ │ └── ui │ │ │ ├── CustomizedUI.java │ │ │ ├── ReflectionUI.java │ │ │ ├── control │ │ │ ├── AbstractFieldControlData.java │ │ │ ├── AbstractMethodControlData.java │ │ │ ├── BufferedFieldControlData.java │ │ │ ├── CustomContext.java │ │ │ ├── DefaultFieldControlData.java │ │ │ ├── DefaultFieldControlInput.java │ │ │ ├── DefaultMethodControlData.java │ │ │ ├── DefaultMethodControlInput.java │ │ │ ├── DelegatingFieldControlData.java │ │ │ ├── ErrorHandlingFieldControlData.java │ │ │ ├── ErrorOccurrence.java │ │ │ ├── ErrorWithDefaultValue.java │ │ │ ├── FieldContext.java │ │ │ ├── FieldControlDataProxy.java │ │ │ ├── FieldControlInputProxy.java │ │ │ ├── IAdvancedFieldControl.java │ │ │ ├── IAdvancedMethodControl.java │ │ │ ├── IContext.java │ │ │ ├── IFieldControlData.java │ │ │ ├── IFieldControlInput.java │ │ │ ├── IMethodControlData.java │ │ │ ├── IMethodControlInput.java │ │ │ ├── MethodContext.java │ │ │ ├── MethodControlDataProxy.java │ │ │ ├── MethodControlInputProxy.java │ │ │ ├── RejectedFieldControlInputException.java │ │ │ ├── plugin │ │ │ │ ├── AbstractSimpleCustomizableFieldControlPlugin.java │ │ │ │ ├── AbstractSimpleFieldControlPlugin.java │ │ │ │ ├── ICustomizableFieldControlPlugin.java │ │ │ │ └── IFieldControlPlugin.java │ │ │ └── swing │ │ │ │ ├── CheckBoxControl.java │ │ │ │ ├── ComboBoxControl.java │ │ │ │ ├── DialogAccessControl.java │ │ │ │ ├── EmbeddedFormControl.java │ │ │ │ ├── ErrorDisplayControl.java │ │ │ │ ├── ListControl.java │ │ │ │ ├── MethodAction.java │ │ │ │ ├── MethodControl.java │ │ │ │ ├── MutableTypeControl.java │ │ │ │ ├── NullControl.java │ │ │ │ ├── NullableControl.java │ │ │ │ ├── NullablePluginControl.java │ │ │ │ ├── PolymorphicControl.java │ │ │ │ ├── PrimitiveValueControl.java │ │ │ │ ├── TextControl.java │ │ │ │ ├── builder │ │ │ │ ├── AbstractEditorBuilder.java │ │ │ │ ├── AbstractEditorFormBuilder.java │ │ │ │ ├── DialogBuilder.java │ │ │ │ └── StandardEditorBuilder.java │ │ │ │ ├── menu │ │ │ │ ├── AbstractFileMenuItem.java │ │ │ │ ├── AbstractMenuItem.java │ │ │ │ ├── AbstractSaveMenuItem.java │ │ │ │ ├── AbstractStandardActionMenuItem.java │ │ │ │ ├── CloseWindowMenuItem.java │ │ │ │ ├── CustomActionMenuItem.java │ │ │ │ ├── HelpMenuItem.java │ │ │ │ ├── Menu.java │ │ │ │ ├── MenuItemSeparator.java │ │ │ │ ├── MethodActionMenuItem.java │ │ │ │ ├── OpenMenuItem.java │ │ │ │ ├── RedoMenuItem.java │ │ │ │ ├── RenewMenuItem.java │ │ │ │ ├── ResetMenuItem.java │ │ │ │ ├── SaveAsMenuItem.java │ │ │ │ ├── SaveMenuItem.java │ │ │ │ └── UndoMenuItem.java │ │ │ │ ├── plugin │ │ │ │ ├── ColorPickerPlugin.java │ │ │ │ ├── CustomCheckBoxPlugin.java │ │ │ │ ├── DatePickerPlugin.java │ │ │ │ ├── DateTimePickerPlugin.java │ │ │ │ ├── DetailedListControlPlugin.java │ │ │ │ ├── EditorPlugin.java │ │ │ │ ├── FileBrowserPlugin.java │ │ │ │ ├── FormattedNumberPlugin.java │ │ │ │ ├── HtmlPlugin.java │ │ │ │ ├── ImageViewPlugin.java │ │ │ │ ├── MultipleLinesTextPlugin.java │ │ │ │ ├── OptionButtonsPlugin.java │ │ │ │ ├── PasswordFieldPlugin.java │ │ │ │ ├── SingleLineTextPlugin.java │ │ │ │ ├── SliderPlugin.java │ │ │ │ ├── SpinnerPlugin.java │ │ │ │ ├── SplitFormPlugin.java │ │ │ │ ├── StyledTextPlugin.java │ │ │ │ └── ToggleButtonPlugin.java │ │ │ │ ├── renderer │ │ │ │ ├── CustomizedSwingRenderer.java │ │ │ │ ├── FieldControlPlaceHolder.java │ │ │ │ ├── Form.java │ │ │ │ ├── MethodControlPlaceHolder.java │ │ │ │ └── SwingRenderer.java │ │ │ │ └── util │ │ │ │ ├── AbstractControlButton.java │ │ │ │ ├── AbstractLazyTreeNode.java │ │ │ │ ├── AlternativeWindowDecorationsPanel.java │ │ │ │ ├── BetterGridLayout.java │ │ │ │ ├── ClassicTabbedPane.java │ │ │ │ ├── ControlPanel.java │ │ │ │ ├── ControlScrollPane.java │ │ │ │ ├── ControlSplitPane.java │ │ │ │ ├── ControlTabbedPane.java │ │ │ │ ├── HyperlinkLabel.java │ │ │ │ ├── HyperlinkTooltip.java │ │ │ │ ├── ImagePanel.java │ │ │ │ ├── JXDateTimePicker.java │ │ │ │ ├── ListTabbedPane.java │ │ │ │ ├── ModificationStackControls.java │ │ │ │ ├── ScrollPaneOptions.java │ │ │ │ ├── SwingRendererUtils.java │ │ │ │ ├── TableLastColumnAutoResizer.java │ │ │ │ └── WindowManager.java │ │ │ ├── info │ │ │ ├── AbstractInfo.java │ │ │ ├── AbstractInfoProxy.java │ │ │ ├── ColorSpecification.java │ │ │ ├── IInfo.java │ │ │ ├── ITransaction.java │ │ │ ├── InfoCategory.java │ │ │ ├── ResourcePath.java │ │ │ ├── ValidationSession.java │ │ │ ├── ValueReturnMode.java │ │ │ ├── app │ │ │ │ ├── ApplicationInfoProxy.java │ │ │ │ ├── DefaultApplicationInfo.java │ │ │ │ └── IApplicationInfo.java │ │ │ ├── custom │ │ │ │ └── InfoCustomizations.java │ │ │ ├── field │ │ │ │ ├── ChangedTypeFieldInfo.java │ │ │ │ ├── DelegatingFieldInfo.java │ │ │ │ ├── ExportedNullStatusFieldInfo.java │ │ │ │ ├── FieldInfoProxy.java │ │ │ │ ├── GetterFieldInfo.java │ │ │ │ ├── HiddenFieldInfoProxy.java │ │ │ │ ├── IFieldInfo.java │ │ │ │ ├── ImplicitListFieldInfo.java │ │ │ │ ├── ImportedFieldInfo.java │ │ │ │ ├── ImportedNullStatusFieldInfo.java │ │ │ │ ├── MembersCapsuleFieldInfo.java │ │ │ │ ├── MethodReturnValueAsFieldInfo.java │ │ │ │ ├── MultipleFieldsAsListFieldInfo.java │ │ │ │ ├── NullReplacementFieldInfo.java │ │ │ │ ├── ParameterAsFieldInfo.java │ │ │ │ ├── PublicFieldInfo.java │ │ │ │ ├── SubFieldInfo.java │ │ │ │ ├── ValueAsListFieldInfo.java │ │ │ │ ├── ValueOptionsAsEnumerationFieldInfo.java │ │ │ │ └── VirtualFieldInfo.java │ │ │ ├── filter │ │ │ │ ├── DelegatingInfoFilter.java │ │ │ │ ├── IInfoFilter.java │ │ │ │ └── InfoFilterProxy.java │ │ │ ├── menu │ │ │ │ ├── AbstractActionMenuItemInfo.java │ │ │ │ ├── AbstractMenuElementInfo.java │ │ │ │ ├── AbstractMenuItemInfo.java │ │ │ │ ├── CustomActionMenuItemInfo.java │ │ │ │ ├── DefaultMenuElementPosition.java │ │ │ │ ├── IMenuElementInfo.java │ │ │ │ ├── IMenuElementPosition.java │ │ │ │ ├── IMenuItemContainerInfo.java │ │ │ │ ├── MenuElementKind.java │ │ │ │ ├── MenuInfo.java │ │ │ │ ├── MenuItemCategory.java │ │ │ │ ├── MenuModel.java │ │ │ │ ├── MethodActionMenuItemInfo.java │ │ │ │ └── StandardActionMenuItemInfo.java │ │ │ ├── method │ │ │ │ ├── AbstractConstructorInfo.java │ │ │ │ ├── AbstractPersistenceMethod.java │ │ │ │ ├── DefaultConstructorInfo.java │ │ │ │ ├── DefaultMethodInfo.java │ │ │ │ ├── FieldAsGetterInfo.java │ │ │ │ ├── FieldAsSetterInfo.java │ │ │ │ ├── HiddenMethodInfoProxy.java │ │ │ │ ├── IMethodInfo.java │ │ │ │ ├── ImportedMethodInfo.java │ │ │ │ ├── InvocationData.java │ │ │ │ ├── LoadFromFileMethod.java │ │ │ │ ├── MethodInfoProxy.java │ │ │ │ ├── ParameterizedFieldsMethodInfo.java │ │ │ │ ├── PresetInvocationDataMethodInfo.java │ │ │ │ ├── ProvidedParameterValueMethodInfoProxy.java │ │ │ │ ├── SaveToFileMethod.java │ │ │ │ └── SubMethodInfo.java │ │ │ ├── parameter │ │ │ │ ├── DefaultParameterInfo.java │ │ │ │ ├── FieldAsParameterInfo.java │ │ │ │ ├── IParameterInfo.java │ │ │ │ └── ParameterInfoProxy.java │ │ │ └── type │ │ │ │ ├── DefaultTypeInfo.java │ │ │ │ ├── ITypeInfo.java │ │ │ │ ├── enumeration │ │ │ │ ├── EnumerationItemInfoProxy.java │ │ │ │ ├── IEnumerationItemInfo.java │ │ │ │ ├── IEnumerationTypeInfo.java │ │ │ │ └── StandardEnumerationTypeInfo.java │ │ │ │ ├── factory │ │ │ │ ├── ChangedTypeNameFactory.java │ │ │ │ ├── ControlPluginActivationFactory.java │ │ │ │ ├── EncapsulatedObjectFactory.java │ │ │ │ ├── FieldAlternativeConstructorsInstaller.java │ │ │ │ ├── FieldAlternativeListItemConstructorsInstaller.java │ │ │ │ ├── FilteredTypeFactory.java │ │ │ │ ├── GenericEnumerationFactory.java │ │ │ │ ├── IInfoProxyFactory.java │ │ │ │ ├── InfoCustomizationsFactory.java │ │ │ │ ├── InfoProxyFactory.java │ │ │ │ ├── InfoProxyFactoryChain.java │ │ │ │ ├── InvocationDataObjectFactory.java │ │ │ │ └── PolymorphicTypeOptionsFactory.java │ │ │ │ ├── iterable │ │ │ │ ├── ArrayTypeInfo.java │ │ │ │ ├── IListTypeInfo.java │ │ │ │ ├── StandardCollectionTypeInfo.java │ │ │ │ ├── item │ │ │ │ │ ├── AbstractBufferedItemPositionFactory.java │ │ │ │ │ ├── AbstractItemPositionFactory.java │ │ │ │ │ ├── BufferedItemPosition.java │ │ │ │ │ ├── BufferedItemPositionFactory.java │ │ │ │ │ ├── DetachedItemDetailsAccessMode.java │ │ │ │ │ ├── EmbeddedItemDetailsAccessMode.java │ │ │ │ │ ├── IListItemDetailsAccessMode.java │ │ │ │ │ ├── ItemDetailsAreaPosition.java │ │ │ │ │ ├── ItemPosition.java │ │ │ │ │ ├── ItemPositionFactory.java │ │ │ │ │ └── ItemPositionProxy.java │ │ │ │ ├── map │ │ │ │ │ ├── IMapEntryTypeInfo.java │ │ │ │ │ ├── StandardMapAsListTypeInfo.java │ │ │ │ │ ├── StandardMapEntry.java │ │ │ │ │ └── StandardMapEntryTypeInfo.java │ │ │ │ ├── structure │ │ │ │ │ ├── CustomizedListStructuralInfo.java │ │ │ │ │ ├── DefaultListStructuralInfo.java │ │ │ │ │ ├── IListStructuralInfo.java │ │ │ │ │ ├── ListStructuralInfoProxy.java │ │ │ │ │ └── column │ │ │ │ │ │ ├── ColumnInfoProxy.java │ │ │ │ │ │ ├── FieldColumnInfo.java │ │ │ │ │ │ ├── IColumnInfo.java │ │ │ │ │ │ ├── PositionColumnInfo.java │ │ │ │ │ │ ├── StringValueColumnInfo.java │ │ │ │ │ │ └── TypeNameColumnInfo.java │ │ │ │ └── util │ │ │ │ │ ├── AbstractDynamicListAction.java │ │ │ │ │ ├── AbstractDynamicListProperty.java │ │ │ │ │ ├── DynamicListActionProxy.java │ │ │ │ │ ├── DynamicListPropertyProxy.java │ │ │ │ │ ├── IDynamicListAction.java │ │ │ │ │ ├── IDynamicListFeauture.java │ │ │ │ │ └── IDynamicListProperty.java │ │ │ │ └── source │ │ │ │ ├── ITypeInfoSource.java │ │ │ │ ├── JavaTypeInfoSource.java │ │ │ │ ├── PrecomputedTypeInfoSource.java │ │ │ │ ├── SpecificitiesIdentifier.java │ │ │ │ └── TypeInfoSourceProxy.java │ │ │ ├── undo │ │ │ ├── AbstractModification.java │ │ │ ├── AbstractModificationProxy.java │ │ │ ├── AbstractSimpleModificationListener.java │ │ │ ├── CancelledModificationException.java │ │ │ ├── FieldControlDataModification.java │ │ │ ├── IModification.java │ │ │ ├── IModificationListener.java │ │ │ ├── IrreversibleModificationException.java │ │ │ ├── ListModificationFactory.java │ │ │ ├── MethodControlDataModification.java │ │ │ ├── ModificationStack.java │ │ │ ├── ModificationStackShitf.java │ │ │ ├── SlaveModificationStack.java │ │ │ └── UndoOrder.java │ │ │ └── util │ │ │ ├── Accessor.java │ │ │ ├── AlternativeDesktopApi.java │ │ │ ├── ArrayAccessor.java │ │ │ ├── BetterFutureTask.java │ │ │ ├── ClassUtils.java │ │ │ ├── ConversionUtils.java │ │ │ ├── Filter.java │ │ │ ├── Functions.java │ │ │ ├── FutureActionBuilder.java │ │ │ ├── IDerivedInstance.java │ │ │ ├── IOUtils.java │ │ │ ├── ImageIcon.java │ │ │ ├── KeyboardKey.java │ │ │ ├── KeyboardShortcut.java │ │ │ ├── Listener.java │ │ │ ├── Mapper.java │ │ │ ├── MathUtils.java │ │ │ ├── MinimalListUpdater.java │ │ │ ├── MiscUtils.java │ │ │ ├── Pair.java │ │ │ ├── PrecomputedTypeInstanceWrapper.java │ │ │ ├── ReflectionUIError.java │ │ │ ├── ReflectionUIUtils.java │ │ │ ├── ReschedulableTask.java │ │ │ ├── StrictDateFormat.java │ │ │ ├── StrictNumberFormat.java │ │ │ ├── SystemProperties.java │ │ │ ├── ValidationErrorRegistry.java │ │ │ ├── ValidationErrorWrapper.java │ │ │ ├── Visitor.java │ │ │ └── Wildcard.java │ └── resources │ │ └── xy │ │ └── reflect │ │ └── ui │ │ └── resource │ │ ├── add.png │ │ ├── category.png │ │ ├── details.png │ │ ├── down.png │ │ ├── error-overlay.png │ │ ├── error-refreshing.gif │ │ ├── error.png │ │ ├── help.png │ │ ├── menu.png │ │ ├── remove.png │ │ ├── save-all.png │ │ ├── up.png │ │ └── weak-error-overlay.png └── test │ ├── java │ └── xy │ │ └── reflect │ │ └── ui │ │ ├── MiscTests.java │ │ ├── ModificationsTest.java │ │ ├── ReflectionUIMinimalTest.java │ │ ├── StaticTests.java │ │ ├── TestIterableTypeInfos.java │ │ └── UtilsTests.java │ └── resources │ └── xy │ └── reflect │ └── ui │ ├── testCustomizations.stt │ ├── testJavaAwtPointUI.stt │ ├── testJavaLangThreadUI.stt │ └── testTableTreeModelExample.stt ├── todo.txt └── tools ├── .gitignore ├── SwingExplorer ├── swag.jar └── swexpl.jar ├── fasterxml-classmate-debian-packaging ├── .gitignore └── classmate-1.4.0 │ ├── .gitignore │ ├── .ply │ └── config │ │ ├── dependencies.test.properties │ │ ├── project.properties │ │ └── repositories.properties │ ├── .travis.yml │ ├── README.md │ ├── VERSION.txt │ ├── debian-build.txt │ ├── debian │ ├── .gitignore │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libclassmate-java.poms │ ├── maven.cleanIgnoreRules │ ├── maven.ignoreRules │ ├── maven.properties │ ├── maven.publishedRules │ ├── maven.rules │ ├── orig-tar.sh │ ├── rules │ └── source │ │ ├── format │ │ └── options │ ├── pom.beforeDebianBuild.xml │ ├── pom.origin.xml │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── fasterxml │ │ │ └── classmate │ │ │ ├── AnnotationConfiguration.java │ │ │ ├── AnnotationInclusion.java │ │ │ ├── AnnotationOverrides.java │ │ │ ├── Annotations.java │ │ │ ├── Filter.java │ │ │ ├── GenericType.java │ │ │ ├── MemberResolver.java │ │ │ ├── ResolvedType.java │ │ │ ├── ResolvedTypeWithMembers.java │ │ │ ├── TypeBindings.java │ │ │ ├── TypeResolver.java │ │ │ ├── members │ │ │ ├── HierarchicType.java │ │ │ ├── RawConstructor.java │ │ │ ├── RawField.java │ │ │ ├── RawMember.java │ │ │ ├── RawMethod.java │ │ │ ├── ResolvedConstructor.java │ │ │ ├── ResolvedField.java │ │ │ ├── ResolvedMember.java │ │ │ ├── ResolvedMethod.java │ │ │ ├── ResolvedParameterizedMember.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── types │ │ │ ├── ResolvedArrayType.java │ │ │ ├── ResolvedInterfaceType.java │ │ │ ├── ResolvedObjectType.java │ │ │ ├── ResolvedPrimitiveType.java │ │ │ ├── ResolvedRecursiveType.java │ │ │ ├── TypePlaceHolder.java │ │ │ └── package-info.java │ │ │ └── util │ │ │ ├── ClassKey.java │ │ │ ├── ClassStack.java │ │ │ ├── ConcurrentTypeCache.java │ │ │ ├── LRUTypeCache.java │ │ │ ├── MethodKey.java │ │ │ ├── ResolvedTypeCache.java │ │ │ ├── ResolvedTypeKey.java │ │ │ └── package-info.java │ └── resources │ │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE │ └── test │ └── java │ └── com │ └── fasterxml │ └── classmate │ ├── AnnotationInclusionTest.java │ ├── AnnotationsTest.java │ ├── BaseTest.java │ ├── OddJDKTypesTest.java │ ├── ResolvedTypeTest.java │ ├── ResolvedTypeWithMembersTest.java │ ├── StdConfigurationTest.java │ ├── TestMemberGenericTypes.java │ ├── TestMemberResolver.java │ ├── TestParameterAnnotations.java │ ├── TestReadme.java │ ├── TestSelfRefMemberTypes.java │ ├── TestSubtypeResolution.java │ ├── TestTypeDescriptions.java │ ├── TestTypeResolver.java │ ├── TypeBindingsTest.java │ ├── members │ ├── GhostTypeParameterInFieldTest.java │ ├── HierarchicTypeTest.java │ ├── Issue28Test.java │ ├── RawConstructorTest.java │ ├── RawFieldTest.java │ ├── RawMemberTest.java │ ├── RawMethodTest.java │ ├── ResolvedConstructorTest.java │ ├── ResolvedFieldTest.java │ ├── ResolvedMemberTest.java │ └── ResolvedMethodTest.java │ ├── types │ ├── ResolvedArrayTypeTest.java │ ├── ResolvedInterfaceTypeTest.java │ ├── ResolvedObjectTypeTest.java │ ├── ResolvedPrimitiveTypeTest.java │ ├── ResolvedRecursiveTypeTest.java │ └── TypePlaceHolderTest.java │ └── util │ ├── ClassKeyTest.java │ ├── MethodKeyTest.java │ └── TestResolvedTypeCache.java ├── gpg4win-2.3.0.exe └── key-pair.gpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/README.md -------------------------------------------------------------------------------- /custom-ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/.classpath -------------------------------------------------------------------------------- /custom-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/.gitignore -------------------------------------------------------------------------------- /custom-ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/.project -------------------------------------------------------------------------------- /custom-ui/.settings/com.wdev91.eclipse.copyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/.settings/com.wdev91.eclipse.copyright.xml -------------------------------------------------------------------------------- /custom-ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /custom-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/LICENSE -------------------------------------------------------------------------------- /custom-ui/examples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/.classpath -------------------------------------------------------------------------------- /custom-ui/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/.gitignore -------------------------------------------------------------------------------- /custom-ui/examples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/.project -------------------------------------------------------------------------------- /custom-ui/examples/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /custom-ui/examples/atmSimulator.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/atmSimulator.icu -------------------------------------------------------------------------------- /custom-ui/examples/audioPlayer.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/audioPlayer.icu -------------------------------------------------------------------------------- /custom-ui/examples/calculator.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/calculator.icu -------------------------------------------------------------------------------- /custom-ui/examples/controlScreen.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/controlScreen.icu -------------------------------------------------------------------------------- /custom-ui/examples/controlScreen2.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/controlScreen2.icu -------------------------------------------------------------------------------- /custom-ui/examples/creditCardPayment.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/creditCardPayment.icu -------------------------------------------------------------------------------- /custom-ui/examples/currencyConverter.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/currencyConverter.icu -------------------------------------------------------------------------------- /custom-ui/examples/default.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/default.icu -------------------------------------------------------------------------------- /custom-ui/examples/employee.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/employee.icu -------------------------------------------------------------------------------- /custom-ui/examples/fastFood.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/fastFood.db -------------------------------------------------------------------------------- /custom-ui/examples/fastFood.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/fastFood.icu -------------------------------------------------------------------------------- /custom-ui/examples/fileExplorer.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/fileExplorer.icu -------------------------------------------------------------------------------- /custom-ui/examples/inputSettings.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/inputSettings.icu -------------------------------------------------------------------------------- /custom-ui/examples/library.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/library.db -------------------------------------------------------------------------------- /custom-ui/examples/library.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/library.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen2.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen2.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen3.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen3.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen4.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen4.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen5.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen5.icu -------------------------------------------------------------------------------- /custom-ui/examples/loginScreen6.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/loginScreen6.icu -------------------------------------------------------------------------------- /custom-ui/examples/mailClient.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/mailClient.icu -------------------------------------------------------------------------------- /custom-ui/examples/meteo.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/meteo.icu -------------------------------------------------------------------------------- /custom-ui/examples/misc/.gitignore: -------------------------------------------------------------------------------- 1 | /screencasts/ 2 | -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/audioPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/audioPlayer.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/calculator.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/controlScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/controlScreen.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/fileExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/fileExplorer.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/helloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/helloWorld.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/loginScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/loginScreen.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/mailClient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/mailClient.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/multiple-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/multiple-examples.png -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/multiple-examples.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/multiple-examples.xcf -------------------------------------------------------------------------------- /custom-ui/examples/misc/screenshots/saySOmething.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/misc/screenshots/saySOmething.png -------------------------------------------------------------------------------- /custom-ui/examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/pom.xml -------------------------------------------------------------------------------- /custom-ui/examples/restaurant.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/restaurant.icu -------------------------------------------------------------------------------- /custom-ui/examples/saySomething.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/saySomething.icu -------------------------------------------------------------------------------- /custom-ui/examples/saySomething2.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/saySomething2.icu -------------------------------------------------------------------------------- /custom-ui/examples/serviceAccountCreation.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/serviceAccountCreation.icu -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/ATMSimulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/ATMSimulator.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/AudioPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/AudioPlayer.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/Calculator.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/ControlScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/ControlScreen.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/ControlScreen2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/ControlScreen2.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/CreditCardPayment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/CreditCardPayment.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/CurrencyConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/CurrencyConverter.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/CustomUITutorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/CustomUITutorial.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/Employee.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/FastFood.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/FastFood.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/FileExplorer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/FileExplorer.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/HelloWorld.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/InputSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/InputSettings.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/Library.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen2.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen3.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen4.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen5.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/LoginScreen6.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/MailClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/MailClient.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/Meteo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/Meteo.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/ReflectionUITutorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/ReflectionUITutorial.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/Restaurant.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/SaySomething.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/SaySomething.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/SaySomething2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/SaySomething2.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/ServiceAccountCreation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/ServiceAccountCreation.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/java/xy/reflect/ui/example/TextEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/java/xy/reflect/ui/example/TextEditor.java -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/atmSimulator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/atmSimulator.jpg -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-import.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-play.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/audioPlayer-stop.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/controlScreen-logs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/controlScreen-logs.gif -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ad.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ae.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/af.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ag.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ai.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/al.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/am.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/an.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ao.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ar.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/as.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/at.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/au.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/aw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ax.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/az.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ba.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bb.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bd.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/be.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bi.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bj.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bo.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/br.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bs.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/by.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/bz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ca.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cd.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ch.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ci.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ck.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/co.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cs.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cx.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/cz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/de.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dj.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/do.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/dz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ec.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ee.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/eg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/eh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/er.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/es.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/et.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fam.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fi.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fj.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fo.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/fr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ga.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gb.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gd.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ge.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gi.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gp.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gq.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gs.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/gy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ht.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/hu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/id.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ie.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/il.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/in.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/io.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/iq.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ir.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/is.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/it.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jo.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/jp.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ke.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ki.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/km.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kp.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ky.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/kz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/la.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lb.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/li.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ls.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/lv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ly.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ma.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/md.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/me.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ml.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mo.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mp.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mq.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ms.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mx.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/my.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/mz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/na.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ne.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ng.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ni.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/no.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/np.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/nz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/om.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pa.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pe.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ph.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ps.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/pw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/py.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/qa.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/re.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ro.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/rs.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ru.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/rw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sa.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sb.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sd.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/se.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/si.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sj.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/so.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/st.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/sz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/td.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/th.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tj.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tk.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tl.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/to.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tr.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tv.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/tz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ua.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ug.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/um.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/us.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/uy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/uz.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/va.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vc.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ve.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vg.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vi.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vn.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/vu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/wales.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/wf.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ws.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/ye.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/yt.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/za.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/zm.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/countryFlags/zw.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-cart.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-cocaCola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-cocaCola.jpg -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-drink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-drink.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-menu.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/fastFood-sandwich.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/file.gif -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/folder.gif -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-book.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-issue.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/library-student.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/loginScreen-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/loginScreen-icon.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-draft.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-inbox.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-sent.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/mailClient-trash.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-background.jpg -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-cloudy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-humidity.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-location.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-rainy.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-refresh.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-sunny.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-windSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/meteo-windSpeed.png -------------------------------------------------------------------------------- /custom-ui/examples/src/main/resources/xy/reflect/ui/example/restaurant-menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/main/resources/xy/reflect/ui/example/restaurant-menus.png -------------------------------------------------------------------------------- /custom-ui/examples/src/test/java/xy/reflect/ui/MinimalTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/src/test/java/xy/reflect/ui/MinimalTest.java -------------------------------------------------------------------------------- /custom-ui/examples/textEditor.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/textEditor.icu -------------------------------------------------------------------------------- /custom-ui/examples/unpackaged-src/AllExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/examples/unpackaged-src/AllExamples.java -------------------------------------------------------------------------------- /custom-ui/hs_err_pid10755.log: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid12176.log: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid15927.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid16051.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid1650.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid1650.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid17384.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid26264.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid26264.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid26518.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid28679.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid28679.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid29211.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid29211.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid29507.log: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid2954.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid2954.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid30939.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid31203.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid31203.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid31358.log: -------------------------------------------------------------------------------- 1 | # 2 | # A fatal error has been detected by the Java Runtime Environment: 3 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid4651.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid8639.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid8639.log -------------------------------------------------------------------------------- /custom-ui/hs_err_pid8661.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-ui/hs_err_pid9405.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/hs_err_pid9405.log -------------------------------------------------------------------------------- /custom-ui/misc/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/banner.xcf -------------------------------------------------------------------------------- /custom-ui/misc/design.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/design.xcf -------------------------------------------------------------------------------- /custom-ui/misc/draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/draft.txt -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/agenor_neue/Agenor Neue Read me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/agenor_neue/Agenor Neue Read me.txt -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/agenor_neue/AgenorNeue-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/agenor_neue/AgenorNeue-Regular.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/sage_sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/sage_sans/LICENSE.txt -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/sage_sans/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/sage_sans/README.txt -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/sage_sans/sagesans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/sage_sans/sagesans-Regular.ttf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/Typodermic Desktop EULA 2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/Typodermic Desktop EULA 2023.pdf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/read-this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/read-this.html -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol back.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol back.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol down.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol down.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol front.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol front.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol hollow.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol hollow.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol left.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol left.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol outline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol outline.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol right.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol right.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol solo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol solo.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol stripe.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol stripe.otf -------------------------------------------------------------------------------- /custom-ui/misc/goodFonts/xylitol/xylitol up.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/goodFonts/xylitol/xylitol up.otf -------------------------------------------------------------------------------- /custom-ui/misc/screenshots/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/screenshots/controller.png -------------------------------------------------------------------------------- /custom-ui/misc/screenshots/customizationTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/screenshots/customizationTools.png -------------------------------------------------------------------------------- /custom-ui/misc/screenshots/fieldCustomization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/screenshots/fieldCustomization.png -------------------------------------------------------------------------------- /custom-ui/misc/screenshots/listCustomization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/screenshots/listCustomization.png -------------------------------------------------------------------------------- /custom-ui/misc/screenshots/onlineDocumentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/screenshots/onlineDocumentation.png -------------------------------------------------------------------------------- /custom-ui/misc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/todo.txt -------------------------------------------------------------------------------- /custom-ui/misc/website/backlinking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/website/backlinking.txt -------------------------------------------------------------------------------- /custom-ui/misc/website/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/website/banner.png -------------------------------------------------------------------------------- /custom-ui/misc/website/java-gui-builder-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/website/java-gui-builder-icon.png -------------------------------------------------------------------------------- /custom-ui/misc/website/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/misc/website/logo.png -------------------------------------------------------------------------------- /custom-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/pom.xml -------------------------------------------------------------------------------- /custom-ui/src/main/java/xy/reflect/ui/util/MoreSystemProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/main/java/xy/reflect/ui/util/MoreSystemProperties.java -------------------------------------------------------------------------------- /custom-ui/src/main/java/xy/reflect/ui/util/SwingCustomizerUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/main/java/xy/reflect/ui/util/SwingCustomizerUtils.java -------------------------------------------------------------------------------- /custom-ui/src/main/resources/xy/reflect/ui/resource/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/main/resources/xy/reflect/ui/resource/banner.png -------------------------------------------------------------------------------- /custom-ui/src/main/resources/xy/reflect/ui/resource/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/main/resources/xy/reflect/ui/resource/custom.png -------------------------------------------------------------------------------- /custom-ui/src/main/resources/xy/reflect/ui/resource/customizations-tools.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/main/resources/xy/reflect/ui/resource/customizations-tools.icu -------------------------------------------------------------------------------- /custom-ui/src/test/java/xy/reflect/ui/CustomUIMinimalTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/test/java/xy/reflect/ui/CustomUIMinimalTest.java -------------------------------------------------------------------------------- /custom-ui/src/test/java/xy/reflect/ui/TestToolsMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/test/java/xy/reflect/ui/TestToolsMessages.java -------------------------------------------------------------------------------- /custom-ui/src/test/resources/xy/reflect/ui/words.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/src/test/resources/xy/reflect/ui/words.en -------------------------------------------------------------------------------- /custom-ui/tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.classpath -------------------------------------------------------------------------------- /custom-ui/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.gitignore -------------------------------------------------------------------------------- /custom-ui/tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.project -------------------------------------------------------------------------------- /custom-ui/tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /custom-ui/tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /custom-ui/tests/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /custom-ui/tests/default.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/default.icu -------------------------------------------------------------------------------- /custom-ui/tests/duplicates.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/duplicates.icu -------------------------------------------------------------------------------- /custom-ui/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/pom.xml -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/ClassExplorerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/ClassExplorerTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/CustomizationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/CustomizationsTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/DuplicatesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/DuplicatesTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/EchoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/EchoTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/EmptyObjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/EmptyObjectTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/ErrorDisplayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/ErrorDisplayTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/ListEmbeddedDetailsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/ListEmbeddedDetailsTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/ListModificationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/ListModificationTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/MapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/MapTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/MemberNamesCollisionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/MemberNamesCollisionTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/MenuCreationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/MenuCreationTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/NullDisplayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/NullDisplayTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/PluginsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/PluginsTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/PolymorphismTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/PolymorphismTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/SelectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/SelectionTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/TableTreeModelExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/TableTreeModelExample.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/TransactionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/TransactionsTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/main/java/xy/reflect/ui/TransientFieldsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/main/java/xy/reflect/ui/TransientFieldsTest.java -------------------------------------------------------------------------------- /custom-ui/tests/src/test/java/xy/reflect/ui/TestWithAutomation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/test/java/xy/reflect/ui/TestWithAutomation.java -------------------------------------------------------------------------------- /custom-ui/tests/src/test/resources/xy/reflect/ui/virtualImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/src/test/resources/xy/reflect/ui/virtualImage.jpg -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testClassExplorer.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testClassExplorer.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testCustomizations.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testCustomizations.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testDuplicates.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testDuplicates.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testEcho.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testEcho.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testEmptyObject.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testEmptyObject.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testErrorDisplay.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testErrorDisplay.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testJavaAwtPointUI.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testJavaAwtPointUI.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testJavaLangThreadUI.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testJavaLangThreadUI.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testListEmbeddedDetails.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testListEmbeddedDetails.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testListModification.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testListModification.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testMap.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testMap.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testMemberNamesCollision.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testMemberNamesCollision.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testMenuCreation.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testMenuCreation.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testNullDisplay.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testNullDisplay.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testPlugins.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testPlugins.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testPolymorphism.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testPolymorphism.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testSelection.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testSelection.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testTableTreeModelExample.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testTableTreeModelExample.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testTransactions.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testTransactions.stt -------------------------------------------------------------------------------- /custom-ui/tests/test-specifications/testTransientFields.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/test-specifications/testTransientFields.stt -------------------------------------------------------------------------------- /custom-ui/tests/tmp/comapre1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/tmp/comapre1.txt -------------------------------------------------------------------------------- /custom-ui/tests/tmp/comapre2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/tests/tmp/comapre2.txt -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/AudioPlayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/AudioPlayerTest.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/CommonUIDefaultsKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/CommonUIDefaultsKeys.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/EditorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/EditorTest.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/ExtractCustomizationsHelp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/ExtractCustomizationsHelp.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/ReflectionUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/ReflectionUITest.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/ReflectionUITest2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/ReflectionUITest2.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/Snippet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/Snippet.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TabColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TabColors.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestDefaultPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestDefaultPackage.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestFocus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestFocus.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestGridBagFilling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestGridBagFilling.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestGrouping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestGrouping.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestInfoCustomizationsLoading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestInfoCustomizationsLoading.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestInner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestInner.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestPrimitiveWrapperTypeEquality.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestPrimitiveWrapperTypeEquality.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/TestSubFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/TestSubFieldInfo.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/ThreadExplorerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/ThreadExplorerTest.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/UIManagerDefaults.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/UIManagerDefaults.java -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/app.png -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/baseFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/baseFont.ttf -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/default.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/default.icu -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/default2.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/default2.icu -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/fontCalligraphic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/fontCalligraphic.ttf -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/fontNice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/fontNice.ttf -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/fontReadable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/fontReadable.ttf -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/fontSmooth.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/fontSmooth.ttf -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/icon.gif -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/misc.png -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/screenButton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/screenButton1.png -------------------------------------------------------------------------------- /custom-ui/unpackaged-src/thread.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/custom-ui/unpackaged-src/thread.icu -------------------------------------------------------------------------------- /reflection-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/.gitignore -------------------------------------------------------------------------------- /reflection-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/LICENSE -------------------------------------------------------------------------------- /reflection-ui/debian/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/debian/readme.txt -------------------------------------------------------------------------------- /reflection-ui/dev-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/dev-readme.txt -------------------------------------------------------------------------------- /reflection-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/pom.xml -------------------------------------------------------------------------------- /reflection-ui/releaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/releaseNotes.txt -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/CustomizedUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/CustomizedUI.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/ReflectionUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/ReflectionUI.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/AbstractFieldControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/AbstractFieldControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/AbstractMethodControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/AbstractMethodControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/BufferedFieldControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/BufferedFieldControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/CustomContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/CustomContext.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/DefaultFieldControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/DefaultFieldControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/DefaultFieldControlInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/DefaultFieldControlInput.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/DefaultMethodControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/DefaultMethodControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/DefaultMethodControlInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/DefaultMethodControlInput.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/ErrorOccurrence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/ErrorOccurrence.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/ErrorWithDefaultValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/ErrorWithDefaultValue.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/FieldContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/FieldContext.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/FieldControlDataProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/FieldControlDataProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/FieldControlInputProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/FieldControlInputProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IAdvancedFieldControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IAdvancedFieldControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IAdvancedMethodControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IAdvancedMethodControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IContext.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IFieldControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IFieldControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IFieldControlInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IFieldControlInput.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IMethodControlData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IMethodControlData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/IMethodControlInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/IMethodControlInput.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/MethodContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/MethodContext.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/MethodControlDataProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/MethodControlDataProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/MethodControlInputProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/MethodControlInputProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/CheckBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/CheckBoxControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/ComboBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/ComboBoxControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/DialogAccessControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/DialogAccessControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/EmbeddedFormControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/EmbeddedFormControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/ErrorDisplayControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/ErrorDisplayControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/ListControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/ListControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/MethodAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/MethodAction.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/MethodControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/MethodControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/MutableTypeControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/MutableTypeControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/NullControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/NullControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/NullableControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/NullableControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/PolymorphicControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/PolymorphicControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/TextControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/TextControl.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/HelpMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/HelpMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/Menu.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/OpenMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/OpenMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/RedoMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/RedoMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/RenewMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/RenewMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/ResetMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/ResetMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/SaveAsMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/SaveAsMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/SaveMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/SaveMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/UndoMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/menu/UndoMenuItem.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/EditorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/EditorPlugin.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/HtmlPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/HtmlPlugin.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/SliderPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/plugin/SliderPlugin.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/renderer/Form.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/renderer/Form.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ControlPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ControlPanel.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/HyperlinkLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/HyperlinkLabel.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ImagePanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ImagePanel.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ListTabbedPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/ListTabbedPane.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/WindowManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/control/swing/util/WindowManager.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/AbstractInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/AbstractInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/AbstractInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/AbstractInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/ColorSpecification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/ColorSpecification.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/IInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/IInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/ITransaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/ITransaction.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/InfoCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/InfoCategory.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/ResourcePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/ResourcePath.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/ValidationSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/ValidationSession.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/ValueReturnMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/ValueReturnMode.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/app/ApplicationInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/app/ApplicationInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/app/DefaultApplicationInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/app/DefaultApplicationInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/app/IApplicationInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/app/IApplicationInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/custom/InfoCustomizations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/custom/InfoCustomizations.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/ChangedTypeFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/ChangedTypeFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/DelegatingFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/DelegatingFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/FieldInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/FieldInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/GetterFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/GetterFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/HiddenFieldInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/HiddenFieldInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/IFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/IFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/ImplicitListFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/ImplicitListFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/ImportedFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/ImportedFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/ParameterAsFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/ParameterAsFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/PublicFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/PublicFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/SubFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/SubFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/ValueAsListFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/ValueAsListFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/field/VirtualFieldInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/field/VirtualFieldInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/filter/DelegatingInfoFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/filter/DelegatingInfoFilter.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/filter/IInfoFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/filter/IInfoFilter.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/filter/InfoFilterProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/filter/InfoFilterProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/AbstractMenuElementInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/AbstractMenuElementInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/AbstractMenuItemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/AbstractMenuItemInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuElementInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuElementInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuElementPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuElementPosition.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuItemContainerInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/IMenuItemContainerInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuElementKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuElementKind.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuItemCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuItemCategory.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/menu/MenuModel.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/DefaultMethodInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/DefaultMethodInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/FieldAsGetterInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/FieldAsGetterInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/FieldAsSetterInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/FieldAsSetterInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/HiddenMethodInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/HiddenMethodInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/IMethodInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/IMethodInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/ImportedMethodInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/ImportedMethodInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/InvocationData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/InvocationData.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/LoadFromFileMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/LoadFromFileMethod.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/MethodInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/MethodInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/SaveToFileMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/SaveToFileMethod.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/method/SubMethodInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/method/SubMethodInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/parameter/IParameterInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/parameter/IParameterInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/parameter/ParameterInfoProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/parameter/ParameterInfoProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/type/DefaultTypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/type/DefaultTypeInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/type/ITypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/type/ITypeInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/type/iterable/ArrayTypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/type/iterable/ArrayTypeInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/type/iterable/IListTypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/type/iterable/IListTypeInfo.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/info/type/source/ITypeInfoSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/info/type/source/ITypeInfoSource.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/AbstractModification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/AbstractModification.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/AbstractModificationProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/AbstractModificationProxy.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/FieldControlDataModification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/FieldControlDataModification.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/IModification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/IModification.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/IModificationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/IModificationListener.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/ListModificationFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/ListModificationFactory.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/ModificationStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/ModificationStack.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/ModificationStackShitf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/ModificationStackShitf.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/SlaveModificationStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/SlaveModificationStack.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/undo/UndoOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/undo/UndoOrder.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Accessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Accessor.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/AlternativeDesktopApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/AlternativeDesktopApi.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ArrayAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ArrayAccessor.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/BetterFutureTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/BetterFutureTask.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ClassUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ClassUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ConversionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ConversionUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Filter.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Functions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Functions.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/FutureActionBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/FutureActionBuilder.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/IDerivedInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/IDerivedInstance.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/IOUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ImageIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ImageIcon.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/KeyboardKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/KeyboardKey.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/KeyboardShortcut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/KeyboardShortcut.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Listener.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Mapper.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/MathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/MathUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/MinimalListUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/MinimalListUpdater.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/MiscUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/MiscUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Pair.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ReflectionUIError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ReflectionUIError.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ReflectionUIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ReflectionUIUtils.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ReschedulableTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ReschedulableTask.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/StrictDateFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/StrictDateFormat.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/StrictNumberFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/StrictNumberFormat.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/SystemProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/SystemProperties.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ValidationErrorRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ValidationErrorRegistry.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/ValidationErrorWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/ValidationErrorWrapper.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Visitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Visitor.java -------------------------------------------------------------------------------- /reflection-ui/src/main/java/xy/reflect/ui/util/Wildcard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/java/xy/reflect/ui/util/Wildcard.java -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/add.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/category.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/details.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/down.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/error-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/error-overlay.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/error-refreshing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/error-refreshing.gif -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/error.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/help.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/menu.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/remove.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/save-all.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/up.png -------------------------------------------------------------------------------- /reflection-ui/src/main/resources/xy/reflect/ui/resource/weak-error-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/main/resources/xy/reflect/ui/resource/weak-error-overlay.png -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/MiscTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/MiscTests.java -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/ModificationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/ModificationsTest.java -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/ReflectionUIMinimalTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/ReflectionUIMinimalTest.java -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/StaticTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/StaticTests.java -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/TestIterableTypeInfos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/TestIterableTypeInfos.java -------------------------------------------------------------------------------- /reflection-ui/src/test/java/xy/reflect/ui/UtilsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/java/xy/reflect/ui/UtilsTests.java -------------------------------------------------------------------------------- /reflection-ui/src/test/resources/xy/reflect/ui/testCustomizations.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/resources/xy/reflect/ui/testCustomizations.stt -------------------------------------------------------------------------------- /reflection-ui/src/test/resources/xy/reflect/ui/testJavaAwtPointUI.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/resources/xy/reflect/ui/testJavaAwtPointUI.stt -------------------------------------------------------------------------------- /reflection-ui/src/test/resources/xy/reflect/ui/testJavaLangThreadUI.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/resources/xy/reflect/ui/testJavaLangThreadUI.stt -------------------------------------------------------------------------------- /reflection-ui/src/test/resources/xy/reflect/ui/testTableTreeModelExample.stt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/src/test/resources/xy/reflect/ui/testTableTreeModelExample.stt -------------------------------------------------------------------------------- /reflection-ui/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/todo.txt -------------------------------------------------------------------------------- /reflection-ui/tools/.gitignore: -------------------------------------------------------------------------------- 1 | /abbot-1.3.0 2 | -------------------------------------------------------------------------------- /reflection-ui/tools/SwingExplorer/swag.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/SwingExplorer/swag.jar -------------------------------------------------------------------------------- /reflection-ui/tools/SwingExplorer/swexpl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/SwingExplorer/swexpl.jar -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/fasterxml-classmate-debian-packaging/.gitignore -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/.ply/config/project.properties: -------------------------------------------------------------------------------- 1 | namespace=com.fasterxml 2 | name=classmate 3 | version=0.5.5-SNAPSHOT 4 | packaging=jar 5 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/.gitignore: -------------------------------------------------------------------------------- 1 | /libclassmate-java/ 2 | /maven-repo/ 3 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/maven.cleanIgnoreRules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/maven.publishedRules: -------------------------------------------------------------------------------- 1 | 2 | com.fasterxml classmate jar s/.*/debian/ * * 3 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/maven.rules: -------------------------------------------------------------------------------- 1 | 2 | com.fasterxml classmate jar s/.*/debian/ * * 3 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/orig-tar.sh: -------------------------------------------------------------------------------- 1 | tar cfz ../classmate_1.4.0.orig.tar.gz src *.xml *.txt 2 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/fasterxml-classmate-debian-packaging/classmate-1.4.0/pom.xml -------------------------------------------------------------------------------- /reflection-ui/tools/gpg4win-2.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/gpg4win-2.3.0.exe -------------------------------------------------------------------------------- /reflection-ui/tools/key-pair.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotxyteam/ReflectionUI/HEAD/reflection-ui/tools/key-pair.gpg --------------------------------------------------------------------------------