├── .gitignore ├── CHANGELOG ├── LICENSE.txt ├── MyOpenLab.AppDir ├── .DirIcon ├── AppRun ├── MyOpenLab.desktop ├── myopenlab.png └── usr │ ├── conf │ ├── logging.properties │ ├── net.properties │ ├── sdp │ │ └── sdp.conf.template │ ├── security │ │ ├── java.policy │ │ ├── java.security │ │ └── policy │ │ │ ├── README.txt │ │ │ ├── limited │ │ │ ├── default_US_export.policy │ │ │ ├── default_local.policy │ │ │ └── exempt_local.policy │ │ │ └── unlimited │ │ │ ├── default_US_export.policy │ │ │ └── default_local.policy │ └── sound.properties │ ├── legal │ ├── java.base │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ ├── LICENSE │ │ ├── aes.md │ │ ├── asm.md │ │ ├── c-libutl.md │ │ ├── cldr.md │ │ ├── icu.md │ │ ├── public_suffix.md │ │ └── unicode.md │ ├── java.compiler │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ └── LICENSE │ ├── java.datatransfer │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ └── LICENSE │ ├── java.desktop │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ ├── LICENSE │ │ ├── colorimaging.md │ │ ├── giflib.md │ │ ├── harfbuzz.md │ │ ├── jpeg.md │ │ ├── lcms.md │ │ ├── libpng.md │ │ ├── mesa3d.md │ │ └── xwd.md │ ├── java.logging │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ └── LICENSE │ ├── java.prefs │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ └── LICENSE │ ├── java.scripting │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ └── LICENSE │ └── java.xml │ │ ├── ADDITIONAL_LICENSE_INFO │ │ ├── ASSEMBLY_EXCEPTION │ │ ├── LICENSE │ │ ├── bcel.md │ │ ├── dom.md │ │ ├── jcup.md │ │ ├── xalan.md │ │ └── xerces.md │ ├── lib │ ├── classlist │ ├── jexec │ ├── jrt-fs.jar │ ├── jspawnhelper │ ├── jvm.cfg │ ├── libawt.so │ ├── libawt_headless.so │ ├── libawt_xawt.so │ ├── libfontmanager.so │ ├── libjava.so │ ├── libjavajpeg.so │ ├── libjawt.so │ ├── libjimage.so │ ├── libjli.so │ ├── libjsig.so │ ├── libjsound.so │ ├── liblcms.so │ ├── libmlib_image.so │ ├── libnet.so │ ├── libnio.so │ ├── libprefs.so │ ├── libsplashscreen.so │ ├── libverify.so │ ├── libzip.so │ ├── modules │ ├── psfont.properties.ja │ ├── psfontj2d.properties │ ├── security │ │ ├── blocked.certs │ │ ├── cacerts │ │ ├── default.policy │ │ └── public_suffix_list.dat │ ├── server │ │ ├── libjsig.so │ │ └── libjvm.so │ └── tzdb.dat │ ├── release │ └── share │ ├── doc │ └── myopenlab │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ └── README.md │ └── myopenlab │ └── distribution │ ├── DistributionStarter.jar │ ├── Elements │ ├── ._.DS_Store │ ├── CircuitElements │ │ ├── ._.DS_Store │ │ ├── 1DArray │ │ │ ├── 1D Graph Generator │ │ │ │ └── definition.def │ │ │ ├── 1DConstString │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── StrConst1D.java │ │ │ │ │ └── StrConst1D.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── 1DLength │ │ │ │ └── definition.def │ │ │ ├── 1DNoiseGenerator │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NoiseGenerator1D.java │ │ │ │ │ └── NoiseGenerator1D.~ava │ │ │ ├── Operator1D │ │ │ │ └── definition.def │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── 2DArray │ │ │ ├── 2DDoubleTo2DString │ │ │ │ └── definition.def │ │ │ ├── Matrix_NXM │ │ │ │ └── definition.def │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── 2Dekoratoren │ │ │ ├── Image_2_0 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XImage.BAK │ │ │ │ │ ├── XImage.java │ │ │ │ │ └── XImage.~ava │ │ │ ├── Label │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XLabel.java │ │ │ │ │ ├── XLabel.~ava │ │ │ │ │ └── label.gif │ │ │ ├── RoundRect │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RoundRect.gif │ │ │ │ │ ├── RoundRect.java │ │ │ │ │ ├── RoundRect.~ava │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── SVGImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── Triangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── XRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Rectangle.gif │ │ │ │ │ ├── Rectangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ ├── XRectangle.java │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── ellipse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Ellipse.BAK │ │ │ │ │ ├── Ellipse.gif │ │ │ │ │ ├── Ellipse.java │ │ │ │ │ ├── Ellipse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2user-defined │ │ │ ├── Semaforo │ │ │ │ ├── Semaf1.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── fffffffff │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── fffffffff.vlogic │ │ │ │ └── icon32.png │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── library.png │ │ ├── Abfragen │ │ │ ├── abfrage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Abfrage.BAK │ │ │ │ │ ├── Abfrage.gif │ │ │ │ │ ├── Abfrage.java │ │ │ │ │ ├── Abfrage.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── abfrage2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Abfrage.BAK │ │ │ │ │ ├── Abfrage.gif │ │ │ │ │ ├── Abfrage.java │ │ │ │ │ ├── Abfrage.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ ├── isGleich │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IsGleich.BAK │ │ │ │ │ ├── IsGleich.java │ │ │ │ │ ├── IsGleich.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── icon.png │ │ │ │ │ └── isgleich.gif │ │ │ ├── isGroesser │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── isGroesser.BAK │ │ │ │ │ ├── isGroesser.gif │ │ │ │ │ ├── isGroesser.java │ │ │ │ │ └── isGroesser.~ava │ │ │ ├── isGroesserGleich │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── isGroesserGleich.BAK │ │ │ │ │ ├── isGroesserGleich.gif │ │ │ │ │ ├── isGroesserGleich.java │ │ │ │ │ └── isGroesserGleich.~ava │ │ │ ├── isKleiner │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IsKleiner.BAK │ │ │ │ │ ├── IsKleiner.gif │ │ │ │ │ ├── IsKleiner.java │ │ │ │ │ ├── IsKleiner.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.png │ │ │ ├── isKleinerGleich │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── isKleinerGleich.BAK │ │ │ │ │ ├── isKleinerGleich.gif │ │ │ │ │ ├── isKleinerGleich.java │ │ │ │ │ └── isKleinerGleich.~ava │ │ │ └── sort.def │ │ ├── Analoge │ │ │ ├── AudioIn │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── AudioIn.gif │ │ │ │ │ ├── AudioIn.java │ │ │ │ │ ├── XAudioIn.gif │ │ │ │ │ └── doc │ │ │ │ │ └── doc_es.html │ │ │ ├── DCT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DCT.BAK │ │ │ │ │ ├── DCT.java │ │ │ │ │ └── Make.bat │ │ │ ├── DataLogger │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Datalogger.java │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── DataLogger2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Datalogger.java │ │ │ │ │ └── Make.bat │ │ │ ├── FFT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FFT.BAK │ │ │ │ │ ├── FFT.gif │ │ │ │ │ ├── FFT.java │ │ │ │ │ ├── FastFourierTransform.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Generator │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Generator.BAK │ │ │ │ │ ├── Generator.gif │ │ │ │ │ ├── Generator.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── XGenerator.gif │ │ │ ├── Generator_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Generator.BAK │ │ │ │ │ ├── Generator.gif │ │ │ │ │ ├── Generator.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── XGenerator.gif │ │ │ ├── IDCT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IDCT.BAK │ │ │ │ │ ├── IDCT.java │ │ │ │ │ └── Make.bat │ │ │ ├── Ton-Generator │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── TonGenrator.BAK │ │ │ │ │ └── TonGenrator.java │ │ │ ├── Trigger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Trigger.BAK │ │ │ │ │ └── Trigger.java │ │ │ ├── Trunc │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Trigger.BAK │ │ │ │ │ └── Trigger.java │ │ │ ├── _AudioIn │ │ │ │ ├── src │ │ │ │ │ ├── AudioIn.BAK │ │ │ │ │ ├── AudioIn.java │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Automation │ │ │ ├── FuzzyControl │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DialogChart.java │ │ │ │ │ ├── DialogChart.~ava │ │ │ │ │ ├── Fuzzy.java │ │ │ │ │ ├── Fuzzy.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NewJDialog.java │ │ │ │ │ └── NewJDialog.~ava │ │ │ ├── PID │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── PID.java │ │ │ │ │ └── PID.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon.png │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── BitOperations │ │ │ ├── AND │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AND.java │ │ │ │ │ ├── AND.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── OR │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OR.java │ │ │ │ │ └── OR.~ava │ │ │ ├── SHIFT_LEFT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AND.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── ShiftLeft.java │ │ │ │ │ └── ShiftLeft.~ava │ │ │ ├── SHIFT_RIGHT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── ShiftRight.java │ │ │ │ │ └── ShiftRight.~ava │ │ │ ├── XOR │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XOR.java │ │ │ │ │ └── XOR.~ava │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Boolean │ │ │ ├── AND │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── AND.BAK │ │ │ │ │ ├── AND.gif │ │ │ │ │ ├── AND.java │ │ │ │ │ ├── AND.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── AND2 │ │ │ │ ├── src │ │ │ │ │ ├── AND.BAK │ │ │ │ │ ├── AND.java │ │ │ │ │ ├── AND.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── AND3 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AND.BAK │ │ │ │ │ ├── AND.java │ │ │ │ │ ├── AND.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Arithm │ │ │ │ ├── HA │ │ │ │ │ ├── HA.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── VA │ │ │ │ │ ├── VA.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── BCD_Counter_up_down │ │ │ │ ├── BCD_Counter_up_down.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.gif │ │ │ │ └── image.png │ │ │ ├── Bin2Dec │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── BinDec.java │ │ │ │ │ ├── BinDec.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Clocked_D_FF │ │ │ │ ├── BIESTABLE1.gif │ │ │ │ ├── D_Flip_Flop_Taktsteuerung.vlogic │ │ │ │ ├── TIPOD1.gif │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── image.png │ │ │ ├── Clocked_JK_FF │ │ │ │ ├── BIESTABLE1.gif │ │ │ │ ├── BIESTABLE2.gif │ │ │ │ ├── Clocked_JK_FF.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.png │ │ │ │ └── image.png │ │ │ ├── Clocked_RS_FF │ │ │ │ ├── SCR_FLIPFLOP.vlogic │ │ │ │ ├── biestable1.gif │ │ │ │ ├── biestable2.gif │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── image.png │ │ │ │ └── xicon.png │ │ │ ├── Contador_BCD │ │ │ │ ├── Contador_BCD.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Counter │ │ │ │ ├── 4BitCounter │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Counter4Bit.BAK │ │ │ │ │ │ ├── Counter4Bit.java │ │ │ │ │ │ ├── Counter4Bit.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── DFlipFlop │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DFlipFlop.java │ │ │ │ │ ├── DFlipFlop.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── D_MS_FF │ │ │ │ ├── BIESTABLE1.gif │ │ │ │ ├── D_MS_FF.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── image.png │ │ │ ├── Dec2Bin │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dec2Bin.java │ │ │ │ │ ├── Dec2Bin.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Decoder │ │ │ │ ├── BCD_DEC │ │ │ │ │ ├── BCD_DEC_Decoder.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Bin2Dec │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BinDec.java │ │ │ │ │ │ ├── BinDec.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── DEC_BCD │ │ │ │ │ ├── DEC_BCD_DECODER.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── image.png │ │ │ │ ├── Dec2Bin │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Dec2Bin.java │ │ │ │ │ │ ├── Dec2Bin.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.png │ │ │ │ ├── SiebenSegDecoder │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Logic.BAK │ │ │ │ │ │ ├── Logic.gif │ │ │ │ │ │ ├── Logic.java │ │ │ │ │ │ ├── Logic.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── definition.def │ │ │ │ ├── icon32.png │ │ │ │ └── sort.def │ │ │ ├── Demultiplexer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Demultiplexer.java │ │ │ │ │ ├── Demultiplexer.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DigitalCircuitSim │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DigitalCircuitSim.java │ │ │ │ │ ├── DigitalCircuitSim.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ └── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ ├── edit.gif │ │ │ │ │ ├── erase.png │ │ │ │ │ └── icon_generate.png │ │ │ ├── FlipFlop │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FlipFlop.java │ │ │ │ │ ├── FlipFlop.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── doc │ │ │ │ │ ├── biestableRS.gif │ │ │ │ │ ├── biestableRS1.gif │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── image.png │ │ │ ├── FlipFlop_old │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FlipFlop.java │ │ │ │ │ ├── FlipFlop.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Impluse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Impluse.BAK │ │ │ │ │ ├── Impluse.java │ │ │ │ │ ├── Impluse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── JK_MS_FF │ │ │ │ ├── BIESTABLE1.gif │ │ │ │ ├── BIESTABLE2.gif │ │ │ │ ├── JK_Master_Slave_Flip_Flop.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.png │ │ │ │ └── image.png │ │ │ ├── Multiplexer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FlipFlop.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Multiplexer.java │ │ │ │ │ └── Multiplexer.~ava │ │ │ ├── NAND │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NAND.BAK │ │ │ │ │ ├── NAND.java │ │ │ │ │ └── NAND.~ava │ │ │ ├── NAND2 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NAND.BAK │ │ │ │ │ ├── NAND.java │ │ │ │ │ └── NAND.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── NAND3 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NAND.BAK │ │ │ │ │ ├── NAND.java │ │ │ │ │ └── NAND.~ava │ │ │ ├── NOR │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NOR.BAK │ │ │ │ │ ├── NOR.java │ │ │ │ │ └── NOR.~ava │ │ │ ├── NOR2 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NOR.BAK │ │ │ │ │ ├── NOR.java │ │ │ │ │ └── NOR.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── NOR3 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NOR.BAK │ │ │ │ │ ├── NOR.java │ │ │ │ │ └── NOR.~ava │ │ │ ├── NOT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NOT.BAK │ │ │ │ │ ├── NOT.java │ │ │ │ │ └── NOT.~ava │ │ │ ├── NXOR │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NXOR.BAK │ │ │ │ │ ├── NXOR.java │ │ │ │ │ └── NXOR.~ava │ │ │ ├── OR │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OR.BAK │ │ │ │ │ ├── OR.java │ │ │ │ │ └── OR.~ava │ │ │ ├── OR2 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OR.BAK │ │ │ │ │ ├── OR.java │ │ │ │ │ └── OR.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── OR3 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OR.BAK │ │ │ │ │ ├── OR.java │ │ │ │ │ └── OR.~ava │ │ │ ├── XOR │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XOR.BAK │ │ │ │ │ ├── XOR.java │ │ │ │ │ └── XOR.~ava │ │ │ ├── const │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Const.BAK │ │ │ │ │ ├── Const.java │ │ │ │ │ ├── Const.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Canvas │ │ │ ├── CanvasList │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── CanvasList.java │ │ │ │ │ ├── CanvasList.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── DrawEllipse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawEllipse.java │ │ │ │ │ ├── DrawEllipse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DrawImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawImage.java │ │ │ │ │ ├── DrawImage.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DrawLine │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawLine.java │ │ │ │ │ ├── DrawLine.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DrawPoints │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawPoints.java │ │ │ │ │ ├── DrawPoints.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DrawRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawRectangle.java │ │ │ │ │ ├── DrawRectangle.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DrawString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DrawString.java │ │ │ │ │ ├── DrawString.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Transform │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Transformation.java │ │ │ │ │ ├── Transformation.~ava │ │ │ │ │ └── Translate.~ava │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Color │ │ │ ├── ColToRGB │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ColToRGB.BAK │ │ │ │ │ ├── ColToRGB.java │ │ │ │ │ ├── ColToRGB.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── ColorConst │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ColorConst.BAK │ │ │ │ │ ├── ColorConst.java │ │ │ │ │ ├── ColorConst.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── IntToRGB │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IntToRGB.java │ │ │ │ │ └── Make.bat │ │ │ ├── RGBtoCol │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RGBtoCol.BAK │ │ │ │ │ ├── RGBtoCol.java │ │ │ │ │ └── RGBtoCol.~ava │ │ │ ├── RGBtoInt │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RGBtoInt.java │ │ │ │ │ └── RGBtoInt.~ava │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── CounterTimer │ │ │ ├── Counter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Counter.BAK │ │ │ │ │ ├── Counter.java │ │ │ │ │ ├── Counter.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── Sleep.BAK │ │ │ ├── Counter_up_down │ │ │ │ ├── Counter_up_down.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── Delay │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Delay.java │ │ │ │ │ ├── Delay.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── ImpulseDelay │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ImpulseDelay.java │ │ │ │ │ ├── ImpulseDelay.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── NumberGenerator │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NumberGenerator.java │ │ │ │ │ └── NumberGenerator.~ava │ │ │ ├── Sleep │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Sleep.BAK │ │ │ │ │ ├── Sleep.java │ │ │ │ │ └── Sleep.~ava │ │ │ ├── Starter │ │ │ │ └── definition.def │ │ │ ├── TickerCounter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── TickerCounter.java │ │ │ │ │ └── TickerCounter.~ava │ │ │ ├── TickerTimer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── TickerTimer.java │ │ │ │ │ └── TickerTimer.~ava │ │ │ ├── Timer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XTimer.BAK │ │ │ │ │ ├── XTimer.java │ │ │ │ │ └── XTimer.~ava │ │ │ ├── TimerCounter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── TimerCounter.java │ │ │ │ │ └── TimerCounter.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── DateTime │ │ │ ├── DateTime │ │ │ │ └── definition.def │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── DateiIO │ │ │ ├── CSV │ │ │ │ ├── src │ │ │ │ │ ├── CSVReader.BAK │ │ │ │ │ ├── CSVReader.java │ │ │ │ │ ├── CSVReader.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── CSVReader │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── CSVReader.BAK │ │ │ │ │ ├── CSVReader.java │ │ │ │ │ ├── CSVReader.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── FileOpenDialog │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ExtensionFileFilter.class │ │ │ │ │ ├── ExtensionFileFilter.java │ │ │ │ │ ├── ExtensionFileFilter.~ava │ │ │ │ │ ├── GetFile.BAK │ │ │ │ │ ├── GetFile.java │ │ │ │ │ ├── GetFile.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── FileSaveDialog │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ExtensionFileFilter.class │ │ │ │ │ ├── ExtensionFileFilter.java │ │ │ │ │ ├── ExtensionFileFilter.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SaveFile.java │ │ │ │ │ └── SaveFile.~ava │ │ │ ├── GetFile │ │ │ │ ├── definition.BAK │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ExtensionFileFilter.class │ │ │ │ │ ├── ExtensionFileFilter.java │ │ │ │ │ ├── ExtensionFileFilter.~ava │ │ │ │ │ ├── GetFile.BAK │ │ │ │ │ ├── GetFile.java │ │ │ │ │ ├── GetFile.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Dekoratoren │ │ │ ├── Image_1_0 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XImage.BAK │ │ │ │ │ ├── XImage.java │ │ │ │ │ └── XImage.~ava │ │ │ ├── Label │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── YLabel.java │ │ │ │ │ └── YLabel.~ava │ │ │ ├── XRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ ├── XRectangle.java │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── XText │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XText.BAK │ │ │ │ │ ├── XText.java │ │ │ │ │ └── XText.~ava │ │ │ ├── ellipse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Ellipse.BAK │ │ │ │ │ ├── Ellipse.java │ │ │ │ │ ├── Ellipse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── Digitale │ │ │ ├── 4BitCounter │ │ │ │ └── definition.def │ │ │ ├── DigitalCircuitSim │ │ │ │ └── definition.def │ │ │ ├── Int4XDec │ │ │ │ └── definition.def │ │ │ ├── SiebenSegDecoder │ │ │ │ └── definition.def │ │ │ ├── SocketClient │ │ │ │ └── definition.def │ │ │ ├── SocketServer │ │ │ │ └── definition.def │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── ElementPropertySetter │ │ │ ├── definition.def │ │ │ └── info.xml │ │ ├── EventCatcher │ │ │ ├── definition.def │ │ │ └── info.xml │ │ ├── Extras │ │ │ ├── ElementPropertySetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ElementPropertySetter.java │ │ │ │ │ ├── ElementPropertySetter.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.png │ │ │ ├── ElementPropertySetter_mal │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ElementPropertySetter.java │ │ │ │ │ ├── ElementPropertySetter.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── EventCatcher │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── EventCatcher.java │ │ │ │ │ ├── EventCatcher.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ ├── FontConst │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FontConst.java │ │ │ │ │ ├── FontConst.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Int4XDec │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Int4XDec.BAK │ │ │ │ │ ├── Int4XDec.java │ │ │ │ │ ├── Int4XDec.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Javascript │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── EditorDialog.form │ │ │ │ │ ├── EditorDialog.java │ │ │ │ │ ├── EditorFrame.form │ │ │ │ │ ├── EditorFrame.java │ │ │ │ │ ├── Javascript.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTimer.java │ │ │ │ │ ├── doc │ │ │ │ │ └── doc_es.html │ │ │ │ │ └── icon.png │ │ │ ├── LogicSubVM │ │ │ │ ├── definition.def │ │ │ │ ├── icon.pspimage │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Input$1.class │ │ │ │ │ ├── Input$2.class │ │ │ │ │ ├── Input$3.class │ │ │ │ │ ├── Input.class │ │ │ │ │ ├── Input.java │ │ │ │ │ ├── Input.jfm │ │ │ │ │ ├── Input.~ava │ │ │ │ │ ├── Input.~fm │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SubVM.java │ │ │ │ │ ├── SubVM.~ava │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── Monoestable │ │ │ │ ├── Monoestable.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── MultiplexerUniversal │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Multiplexer.java │ │ │ │ │ └── Multiplexer.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── MultiplexerUniversal_1_1 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Multiplexer.java │ │ │ │ │ └── Multiplexer.~ava │ │ │ ├── Multivibrador │ │ │ │ ├── Multivibrador.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Semaforo │ │ │ │ ├── Semaf1.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Starter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Starter.java │ │ │ │ │ └── Starter.~ava │ │ │ ├── SubVM │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── icon.pspimage │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Input$1.class │ │ │ │ │ ├── Input$2.class │ │ │ │ │ ├── Input$3.class │ │ │ │ │ ├── Input.class │ │ │ │ │ ├── Input.java │ │ │ │ │ ├── Input.jfm │ │ │ │ │ ├── Input.~ava │ │ │ │ │ ├── Input.~fm │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SubVM.java │ │ │ │ │ ├── SubVM.~ava │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── Verteiler │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Verteiler.BAK │ │ │ │ │ ├── Verteiler.java │ │ │ │ │ └── Verteiler.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── FlowCharts │ │ │ ├── ._.DS_Store │ │ │ ├── Beep │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Beep.java │ │ │ │ │ ├── Beep.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Dec │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dec.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── doc │ │ │ │ │ └── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ ├── Decision │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Decision.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── doc │ │ │ │ │ └── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ ├── Delay │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Delay.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── doc │ │ │ │ │ └── doc_es.html │ │ │ │ │ ├── icon.png │ │ │ │ │ └── image.png │ │ │ ├── For │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XFor.java │ │ │ │ │ └── XFor.~ava │ │ │ ├── Inc │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Inc.java │ │ │ │ │ ├── Inc.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Next │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean - copia.bat │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make - copia.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XNext.java │ │ │ │ │ └── XNext.~ava │ │ │ ├── Node │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Node.java │ │ │ │ │ └── Node.~ava │ │ │ ├── Output │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Output.java │ │ │ │ │ └── Output.~ava │ │ │ ├── Procedure │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Procedure.java │ │ │ │ │ └── Procedure.~ava │ │ │ ├── ProcessGetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── ProcessGetter.java │ │ │ │ │ └── ProcessGetter.~ava │ │ │ ├── ProcessSetter │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── ProcessSetter.java │ │ │ │ │ ├── doc │ │ │ │ │ ├── doc_en.html │ │ │ │ │ └── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ ├── Return │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Return.java │ │ │ │ │ └── Return.~ava │ │ │ ├── Robot │ │ │ │ ├── Get │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Get.java │ │ │ │ │ │ ├── Get.~ava │ │ │ │ │ │ ├── GetSensor.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── Go │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Beep.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── GoStep.java │ │ │ │ │ │ ├── GoStep.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── SetRobot │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SetRobot.java │ │ │ │ │ │ └── SetRobot.~ava │ │ │ │ ├── Turn │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Turn.java │ │ │ │ │ │ └── Turn.~ava │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── SetterEvaluator │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SetterEval.java │ │ │ │ │ └── SetterEval.~ava │ │ │ ├── Start │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Start.java │ │ │ │ │ └── Start.~ava │ │ │ ├── Variables │ │ │ │ ├── Getter │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── GetterDouble.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── doc_es.html │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Setter │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SetterDouble.java │ │ │ │ │ │ ├── SetterDouble.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── icon32.png │ │ │ │ └── sort.def │ │ │ ├── Wend │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XWend.java │ │ │ │ │ └── XWend.~ava │ │ │ ├── While │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XWhile.java │ │ │ │ │ └── XWhile.~ava │ │ │ ├── _ProcessSetter │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── ProcessSetter.java │ │ │ │ │ └── ProcessSetter.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ ├── print │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Output.java │ │ │ │ │ └── Output.~ava │ │ │ └── sort.def │ │ ├── Font │ │ │ ├── FontConst │ │ │ │ └── definition.def │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── Generator │ │ │ ├── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Generator.BAK │ │ │ │ ├── Generator.java │ │ │ │ ├── Generator.~ava │ │ │ │ └── Make.bat │ │ │ └── xdefinition.def │ │ ├── Gruppe │ │ │ ├── DeGruppierer │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DeGruppierer.BAK │ │ │ │ │ ├── DeGruppierer.gif │ │ │ │ │ ├── DeGruppierer.java │ │ │ │ │ ├── DeGruppierer.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Gruppierer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Gruppierer.BAK │ │ │ │ │ ├── Gruppierer.java │ │ │ │ │ ├── Gruppierer.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Image │ │ │ ├── Aufhellen │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Aufhellen.BAK │ │ │ │ │ ├── Aufhellen.java │ │ │ │ │ ├── Aufhellen.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Cam │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Cam.BAK │ │ │ │ │ ├── Cam.java │ │ │ │ │ ├── Cam.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Canny │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canny.java │ │ │ │ │ ├── CannyDetector.java │ │ │ │ │ ├── CannyDetector.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Convolve │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Grayscale │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Grayscale.BAK │ │ │ │ │ ├── Grayscale.java │ │ │ │ │ ├── Grayscale.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── ImageLoader │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LoadImage.BAK │ │ │ │ │ ├── LoadImage.java │ │ │ │ │ ├── LoadImage.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── ImageLoader2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LoadImage.BAK │ │ │ │ │ ├── LoadImage.java │ │ │ │ │ ├── LoadImage.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── JPEG Codec │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JPEGCODER.BAK │ │ │ │ │ ├── JPEGCODER.java │ │ │ │ │ ├── JPEGCODER.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── JPEG Codec2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JPEGCODER2.java │ │ │ │ │ ├── JPEGCODER2.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── JPEG Decoder │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JPEGDECODER.BAK │ │ │ │ │ ├── JPEGDECODER.java │ │ │ │ │ ├── JPEGDECODER.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── MedianFilter3x3 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MedianFilter.BAK │ │ │ │ │ ├── MedianFilter.java │ │ │ │ │ └── MedianFilter.~ava │ │ │ ├── StaticImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── StaticImage.java │ │ │ │ │ └── StaticImage.~ava │ │ │ ├── Threshold │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Threshold.BAK │ │ │ │ │ ├── Threshold.java │ │ │ │ │ └── Threshold.~ava │ │ │ ├── Weichzeichnen │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Weichzeichnen.BAK │ │ │ │ │ ├── Weichzeichnen.java │ │ │ │ │ └── Weichzeichnen.~ava │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── Interface │ │ │ ├── ._.DS_Store │ │ │ ├── Firmata │ │ │ │ ├── ._.DS_Store │ │ │ │ ├── RXTXcomm.jar │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── private │ │ │ │ │ │ ├── config.properties │ │ │ │ │ │ ├── private.properties │ │ │ │ │ │ └── private.xml │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Constanten.java │ │ │ │ │ ├── DialogPins.form │ │ │ │ │ ├── DialogPins.java │ │ │ │ │ ├── Firmata.java │ │ │ │ │ ├── FormWait.form │ │ │ │ │ ├── FormWait.java │ │ │ │ │ ├── NewJDialog.java │ │ │ │ │ ├── PinCapatibilities.java │ │ │ │ │ ├── PinCapatibilityItem.java │ │ │ │ │ ├── doc │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── doc.html │ │ │ │ │ │ ├── doc_en.html │ │ │ │ │ │ └── doc_es.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_en_archivos │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ ├── image008.jpg │ │ │ │ │ │ ├── image009.png │ │ │ │ │ │ ├── image010.jpg │ │ │ │ │ │ ├── image011.png │ │ │ │ │ │ ├── image012.jpg │ │ │ │ │ │ ├── image013.png │ │ │ │ │ │ ├── image014.jpg │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ ├── doc_es.html │ │ │ │ │ └── doc_es_archivos │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ ├── image008.jpg │ │ │ │ │ │ ├── image013.png │ │ │ │ │ │ ├── image015.png │ │ │ │ │ │ ├── image017.png │ │ │ │ │ │ ├── image019.jpg │ │ │ │ │ │ ├── image020.jpg │ │ │ │ │ │ ├── image021.jpg │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── iconCircuit - copia.png │ │ │ │ │ └── iconCircuit.png │ │ │ ├── ModbusRTU │ │ │ │ ├── ModbusRTUCommand │ │ │ │ │ ├── ModbusRTUCommand.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── Processing │ │ │ │ ├── 1DHexStrTo1DBytes │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToString.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── HexToBytes.java │ │ │ │ │ │ ├── HexToBytes.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── BytesToHex │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToHEX.java │ │ │ │ │ │ ├── BytesToHEX.~ava │ │ │ │ │ │ ├── BytesToString.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── BytesToString │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToString.java │ │ │ │ │ │ ├── BytesToString.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── BytesToStrings │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToStrings.java │ │ │ │ │ │ ├── BytesToStrings.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── CRC16Bit │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToString.~ava │ │ │ │ │ │ ├── CRC16.java │ │ │ │ │ │ ├── CRC16.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── HexToBytes │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── BytesToString.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── HexToBytes.java │ │ │ │ │ │ ├── HexToBytes.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── StringToBytes │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── StringToBytes.java │ │ │ │ │ │ └── StringToBytes.~ava │ │ │ │ ├── definition.def │ │ │ │ ├── icon32.png │ │ │ │ └── sort.def │ │ │ ├── RS232 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RS232.java │ │ │ │ │ └── RS232.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── RS232RuntimeConfig │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RS232.java │ │ │ │ │ └── RS232.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── RS232RuntimeConfig_1_1 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RS232.java │ │ │ │ │ └── RS232.~ava │ │ │ ├── RS232_1_2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RS232.java │ │ │ │ │ └── RS232.~ava │ │ │ ├── RS232v2 │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTimer.java │ │ │ │ │ ├── RS232v2.java │ │ │ │ │ └── icon.gif │ │ │ ├── Raspberry_JV │ │ │ │ ├── ADS11X5_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── adc.py │ │ │ │ │ │ ├── cmdWrite_JV.java │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── icon.png │ │ │ │ ├── Read_DI_RPI_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Read_DI_RPI_JV.java │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Read_RPI_Temp_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Read_RPI_Temp_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── icon.png │ │ │ │ ├── Set_DI_RPI_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Set_DI_RPI_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Set_DO_RPI_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Set_DO_RPI_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Write_DO_RPI_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Write_DO_RPI_JV.java │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── icon.gif │ │ │ │ └── sort.def │ │ │ ├── SerialCOM_JV │ │ │ │ ├── Get_Bytes_at_Port_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbbuild.xml │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Get_Bytes_at_Port_JV.java │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── InitSerialCOM │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── ArduinoJSSC_JV.java │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── InitSerialCOM_JV.java │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SerialServer.java │ │ │ │ │ │ ├── SocketServerUDP_JV.java │ │ │ │ │ │ ├── TestArduinoCOM_JV.java │ │ │ │ │ │ ├── WriteAndReadThread.java │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── _nix_based │ │ │ │ │ │ │ └── jssc.cpp │ │ │ │ │ │ ├── jssc_SerialNativeInterface.h │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ └── jssc.c++ │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── jssc │ │ │ │ │ │ ├── SerialNativeInterface.class │ │ │ │ │ │ ├── SerialPort$1.class │ │ │ │ │ │ ├── SerialPort$EventThread.class │ │ │ │ │ │ ├── SerialPort$LinuxEventThread.class │ │ │ │ │ │ ├── SerialPort.class │ │ │ │ │ │ ├── SerialPortEvent.class │ │ │ │ │ │ ├── SerialPortEventListener.class │ │ │ │ │ │ ├── SerialPortException.class │ │ │ │ │ │ ├── SerialPortList$1.class │ │ │ │ │ │ ├── SerialPortList.class │ │ │ │ │ │ └── SerialPortTimeoutException.class │ │ │ │ │ │ └── libs │ │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── libjSSC-2.8_armhf.so │ │ │ │ │ │ ├── libjSSC-2.8_armsf.so │ │ │ │ │ │ ├── libjSSC-2.8_x86.so │ │ │ │ │ │ └── libjSSC-2.8_x86_64.so │ │ │ │ │ │ ├── mac_os_x │ │ │ │ │ │ ├── libjSSC-2.8_ppc.jnilib │ │ │ │ │ │ ├── libjSSC-2.8_ppc64.jnilib │ │ │ │ │ │ ├── libjSSC-2.8_x86.jnilib │ │ │ │ │ │ └── libjSSC-2.8_x86_64.jnilib │ │ │ │ │ │ ├── solaris │ │ │ │ │ │ ├── libjSSC-2.8_x86.so │ │ │ │ │ │ └── libjSSC-2.8_x86_64.so │ │ │ │ │ │ └── windows │ │ │ │ │ │ ├── jSSC-2.8_x86.dll │ │ │ │ │ │ └── jSSC-2.8_x86_64.dll │ │ │ │ ├── Print_SerialPort_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbbuild.xml │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Print_SerialPort_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Read_SerialPort_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbbuild.xml │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Read_SerialPort_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── SerialPort_Transaction_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Length.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SerialPort_Transaction_JV.java │ │ │ │ │ │ ├── SocketClient_JV.java │ │ │ │ │ │ ├── doc_de │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image006.jpg │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_en │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ ├── doc_es │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index_archivos │ │ │ │ │ │ │ ├── colorschememapping.xml │ │ │ │ │ │ │ ├── filelist.xml │ │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ │ ├── image002.jpg │ │ │ │ │ │ │ ├── image003.png │ │ │ │ │ │ │ ├── image004.jpg │ │ │ │ │ │ │ ├── image005.png │ │ │ │ │ │ │ ├── image007.jpg │ │ │ │ │ │ │ ├── image007.png │ │ │ │ │ │ │ └── themedata.thmx │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── icon.gif │ │ │ │ └── sort.def │ │ │ ├── Socket_GET_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Concat.BAK │ │ │ │ │ ├── Concat.gif │ │ │ │ │ ├── Concat.~ava │ │ │ │ │ ├── HTTP_GET_JV.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.png │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── LogicSubVM │ │ │ ├── definition.def │ │ │ ├── icon.pspimage │ │ │ └── info.xml │ │ ├── MCU │ │ │ ├── StackInterpreter │ │ │ │ ├── FlowCharts │ │ │ │ │ ├── Decision │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Decision.java │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── Halt │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── load.txt │ │ │ │ │ │ └── xdefinition.def │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ │ └── Node.~ava │ │ │ │ │ ├── Return │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── load.txt │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Return.java │ │ │ │ │ │ │ └── Return.~ava │ │ │ │ │ │ └── xxdefinition.def │ │ │ │ │ ├── Start │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── load.txt │ │ │ │ │ │ ├── load.~ava │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Start.java │ │ │ │ │ │ │ └── Start.~ava │ │ │ │ │ │ └── xdefinition.def │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── expression │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Element.java │ │ │ │ │ │ │ ├── Element.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── function │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Function.java │ │ │ │ │ │ │ ├── Function.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── icon32.png │ │ │ │ │ ├── oldDecision │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Decision.java │ │ │ │ │ │ │ ├── Decision.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ └── xdefinition.def │ │ │ │ │ ├── setvar │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Element.java │ │ │ │ │ │ │ ├── Element.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ └── xdefinition.def │ │ │ │ │ └── sort.def │ │ │ │ ├── Loader │ │ │ │ │ ├── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FileConfigParser.java │ │ │ │ │ │ ├── FileConfigParser.~ava │ │ │ │ │ │ ├── Loader.java │ │ │ │ │ │ ├── Loader.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ │ └── yxdefinition.def │ │ │ │ ├── icon32.png │ │ │ │ ├── old │ │ │ │ │ ├── Boolean │ │ │ │ │ │ ├── AND │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── Const │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ ├── Flip-Flops │ │ │ │ │ │ │ ├── D-FF │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── RS-FF │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── icon32.png │ │ │ │ │ │ ├── Input │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ ├── Input.java │ │ │ │ │ │ │ │ ├── Input.~ava │ │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ ├── NAND │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── NOR │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── NOT │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── Output │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ ├── Led.~ava │ │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ │ ├── Output.java │ │ │ │ │ │ │ │ └── Output.~ava │ │ │ │ │ │ ├── Splitter │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── Timers │ │ │ │ │ │ │ ├── AbzugsVerz │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── AbzugsVerz.java │ │ │ │ │ │ │ │ │ ├── AbzugsVerz.~ava │ │ │ │ │ │ │ │ │ ├── AnzugsVerz.~ava │ │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ │ │ └── Timer.~ava │ │ │ │ │ │ │ ├── AnzugsVerz │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── AnzugsVerz.java │ │ │ │ │ │ │ │ │ ├── AnzugsVerz.~ava │ │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ │ │ └── Timer.~ava │ │ │ │ │ │ │ ├── Timer │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ │ │ ├── Timer.java │ │ │ │ │ │ │ │ │ └── Timer.~ava │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon32.png │ │ │ │ │ │ │ └── sort.def │ │ │ │ │ │ ├── XOR │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon32.png │ │ │ │ │ │ └── sort.def │ │ │ │ │ ├── InputPin │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── CElement.BAK │ │ │ │ │ │ │ ├── CElement.java │ │ │ │ │ │ │ ├── CElement.~ava │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── LCD │ │ │ │ │ │ ├── LCD_CLEAR │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── LCD_GOTOXY │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── LCD_PRINT_CHAR │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── LCD_PRINT_NUM │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── icon32.png │ │ │ │ │ ├── LCD_CLEAR │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Element.java │ │ │ │ │ │ │ ├── Element.~ava │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ └── PrintNum.~ava │ │ │ │ │ ├── LCD_PRINT_NUM │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── PrintNum.java │ │ │ │ │ │ │ └── PrintNum.~ava │ │ │ │ │ ├── Number │ │ │ │ │ │ ├── ADC │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── ADC.java │ │ │ │ │ │ │ │ ├── ADC.~ava │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ ├── ADD │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── Const │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ │ ├── DIV │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── IF_A_X_B │ │ │ │ │ │ │ ├── IF_A_BIGGER_B │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── IF_A_EQ_B │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── IF_A_EQ_BIGGER_B │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── IF_A_EQ_SMALLER_B │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── IF_A_SMALLER_B │ │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── icon32.png │ │ │ │ │ │ ├── MUL │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── PWM │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ │ ├── Datei1.txt │ │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ │ ├── PWM.java │ │ │ │ │ │ │ │ └── PWM.~ava │ │ │ │ │ │ ├── SUB │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── Splitter │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── UART │ │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ │ └── load.txt │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon32.png │ │ │ │ │ │ └── sort.def │ │ │ │ │ └── OutputPin │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── CElement.java │ │ │ │ │ │ ├── CElement.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── sort.def │ │ │ │ └── xdefinition.def │ │ │ ├── icon32.png │ │ │ ├── oldStackInterpreter │ │ │ │ ├── Boolean │ │ │ │ │ ├── AND │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── Input │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Input.java │ │ │ │ │ │ │ ├── Input.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── NAND │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── NOR │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── NOT │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── OR │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── Output │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Output.java │ │ │ │ │ │ │ └── Output.~ava │ │ │ │ │ ├── Splitter │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── icon32.png │ │ │ │ │ └── sort.def │ │ │ │ ├── Delay │ │ │ │ │ ├── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Delay.java │ │ │ │ │ │ ├── Delay.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ │ └── xdefinition.def │ │ │ │ ├── Flip-Flops │ │ │ │ │ ├── definition.def │ │ │ │ │ └── icon32.png │ │ │ │ ├── FlowCharts │ │ │ │ │ ├── Dec │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Dec.java │ │ │ │ │ │ │ ├── Dec.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── Decision │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Decision.java │ │ │ │ │ │ │ ├── Decision.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── Inc │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Inc.java │ │ │ │ │ │ │ ├── Inc.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ │ └── Node.~ava │ │ │ │ │ ├── Return │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Return.java │ │ │ │ │ │ │ └── Return.~ava │ │ │ │ │ ├── Set │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Set.java │ │ │ │ │ │ │ └── Set.~ava │ │ │ │ │ ├── Start │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Start.java │ │ │ │ │ │ │ └── Start.~ava │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── icon32.png │ │ │ │ │ ├── print │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Output.java │ │ │ │ │ │ │ └── Output.~ava │ │ │ │ │ └── sort.def │ │ │ │ ├── Loader │ │ │ │ │ ├── src │ │ │ │ │ │ ├── AND.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FileConfigParser.java │ │ │ │ │ │ ├── FileConfigParser.~ava │ │ │ │ │ │ ├── Loader.java │ │ │ │ │ │ ├── Loader.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ │ └── yxdefinition.def │ │ │ │ ├── Number │ │ │ │ │ ├── ADC │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ADC.java │ │ │ │ │ │ │ ├── ADC.~ava │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── ADD │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── Const │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ │ └── Make.bat │ │ │ │ │ ├── DIV │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── MUL │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── PWM │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── PWM.java │ │ │ │ │ │ │ └── PWM.~ava │ │ │ │ │ ├── SUB │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── Splitter │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── load.txt │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── icon32.png │ │ │ │ │ └── sort.def │ │ │ │ ├── PRINT_NUM │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── xdefinition.def │ │ │ │ ├── UserElement │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FileConfigParser.java │ │ │ │ │ │ ├── FileConfigParser.~ava │ │ │ │ │ │ ├── Loader.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ ├── UserElement.java │ │ │ │ │ │ └── UserElement.~ava │ │ │ │ ├── icon32.png │ │ │ │ ├── sort.def │ │ │ │ └── xdefinition.def │ │ │ └── xdefinition.def │ │ ├── Message │ │ │ ├── definition.def │ │ │ └── info.xml │ │ ├── Node │ │ │ ├── bindoc_es │ │ │ │ └── index.html │ │ │ ├── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Make.bat │ │ │ │ └── Node.java │ │ │ └── xdefinition.def │ │ ├── Numerik │ │ │ ├── ByteConst │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Const.gif │ │ │ │ │ ├── Const.java │ │ │ │ │ ├── Const.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── ByteToInt │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── ByteToInt.java │ │ │ │ │ ├── ByteToInt.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Const │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Const.BAK │ │ │ │ │ ├── Const.gif │ │ │ │ │ ├── Const.java │ │ │ │ │ ├── Const.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DBL2INT │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DblToInt.BAK │ │ │ │ │ ├── DblToInt.java │ │ │ │ │ ├── DblToInt.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── DateTime │ │ │ │ ├── DateTime │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── DateTime.java │ │ │ │ │ │ ├── DateTime.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── DateTime_v1.1 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── DateTime.java │ │ │ │ │ │ ├── DateTime.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── Hypot_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dividierer.BAK │ │ │ │ │ ├── Dividierer.gif │ │ │ │ │ ├── Dividierer.java │ │ │ │ │ ├── Dividierer.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── INT2DBL │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IntToDbl.BAK │ │ │ │ │ ├── IntToDbl.java │ │ │ │ │ ├── IntToDbl.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Int2Byte │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── IntToByte.java │ │ │ │ │ ├── IntToByte.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── IntConst │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Const.gif │ │ │ │ │ ├── Const.java │ │ │ │ │ ├── Const.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Matrix │ │ │ │ ├── Matrix_NXM │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ │ └── Verteiler.BAK │ │ │ │ ├── icon32.png │ │ │ │ └── xdefinition.def │ │ │ ├── Parser │ │ │ │ ├── MathCalc │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── Var.java │ │ │ │ │ │ ├── Visual.form │ │ │ │ │ │ └── Visual.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MathCalc.BAK │ │ │ │ │ │ ├── MathCalc.java │ │ │ │ │ │ └── MathCalc.~ava │ │ │ │ ├── MathCalc2 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── Parser.~ava │ │ │ │ │ │ ├── Var.java │ │ │ │ │ │ ├── Visual.form │ │ │ │ │ │ └── Visual.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MathCalc.BAK │ │ │ │ │ │ ├── MathCalc.java │ │ │ │ │ │ └── MathCalc.~ava │ │ │ │ ├── MathCalc3 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── Parser.~ava │ │ │ │ │ │ ├── Var.java │ │ │ │ │ │ ├── Visual.form │ │ │ │ │ │ └── Visual.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MathCalc.BAK │ │ │ │ │ │ ├── MathCalc.java │ │ │ │ │ │ └── MathCalc.~ava │ │ │ │ ├── MathGraph Generator │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── Var.java │ │ │ │ │ │ ├── Visual.form │ │ │ │ │ │ └── Visual.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MathGraphGenerator.BAK │ │ │ │ │ │ ├── MathGraphGenerator.java │ │ │ │ │ │ └── MathGraphGenerator.~ava │ │ │ │ ├── SummExpression │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── Parser.~ava │ │ │ │ │ │ ├── Var.java │ │ │ │ │ │ ├── Visual.form │ │ │ │ │ │ └── Visual.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SummExpression.java │ │ │ │ │ │ └── SummExpression.~ava │ │ │ │ ├── definition.def │ │ │ │ ├── icon.gif │ │ │ │ ├── icon.pspimage │ │ │ │ └── icon32.png │ │ │ ├── Random │ │ │ │ ├── This component is obsolete.txt │ │ │ │ └── Xdefinition.def │ │ │ ├── Random2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XRandom.BAK │ │ │ │ │ ├── XRandom.java │ │ │ │ │ └── XRandom.~ava │ │ │ ├── RandomGenerator │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XRandom.BAK │ │ │ │ │ ├── XRandom.java │ │ │ │ │ └── XRandom.~ava │ │ │ ├── Speicher │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Speicher.BAK │ │ │ │ │ ├── Speicher.java │ │ │ │ │ └── Speicher.~ava │ │ │ ├── ToDeg │ │ │ │ ├── ToDeg.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── icon.png │ │ │ ├── ToRad │ │ │ │ ├── ToRad.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.png │ │ │ ├── abs │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Abs.BAK │ │ │ │ │ ├── Abs.java │ │ │ │ │ ├── Abs.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── addierer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Addierer.BAK │ │ │ │ │ ├── Addierer.java │ │ │ │ │ ├── Addierer.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Kopie von Addierer.javaX │ │ │ │ │ └── Make.bat │ │ │ ├── dec │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dec.BAK │ │ │ │ │ ├── Dec.java │ │ │ │ │ ├── Dec.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── dividierer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dividierer.BAK │ │ │ │ │ ├── Dividierer.java │ │ │ │ │ ├── Dividierer.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── icon32.png │ │ │ ├── inc │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Inc.BAK │ │ │ │ │ ├── Inc.java │ │ │ │ │ ├── Inc.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── info.xml │ │ │ ├── log │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Log.BAK │ │ │ │ │ ├── Log.java │ │ │ │ │ ├── Log.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── modulus_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Dividierer.BAK │ │ │ │ │ ├── Dividierer.gif │ │ │ │ │ ├── Dividierer.java │ │ │ │ │ ├── Dividierer.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── multiplizierer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Multiplizierer.BAK │ │ │ │ │ ├── Multiplizierer.gif │ │ │ │ │ ├── Multiplizierer.java │ │ │ │ │ └── Multiplizierer.~ava │ │ │ ├── sort.def │ │ │ ├── sqrt │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.BAK │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Sqrt.BAK │ │ │ │ │ ├── Sqrt.java │ │ │ │ │ └── Sqrt.~ava │ │ │ ├── subtrahierer │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Subtrahierer.BAK │ │ │ │ │ ├── Subtrahierer.gif │ │ │ │ │ ├── Subtrahierer.java │ │ │ │ │ └── Subtrahierer.~ava │ │ │ └── trigonometrie │ │ │ │ ├── ACos │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XACos.BAK │ │ │ │ │ ├── XACos.java │ │ │ │ │ └── XACos.~ava │ │ │ │ ├── ASin │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XASin.BAK │ │ │ │ │ ├── XASin.java │ │ │ │ │ ├── XASin.~ava │ │ │ │ │ └── XSin.BAK │ │ │ │ ├── ATan │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XATan.BAK │ │ │ │ │ ├── XATan.java │ │ │ │ │ ├── XATan.~ava │ │ │ │ │ └── XTan.BAK │ │ │ │ ├── Cos │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XCos.BAK │ │ │ │ │ ├── XCos.java │ │ │ │ │ └── XCos.~ava │ │ │ │ ├── Sin │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XSin.BAK │ │ │ │ │ ├── XSin.gif │ │ │ │ │ ├── XSin.java │ │ │ │ │ └── XSin.~ava │ │ │ │ ├── Tan │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XTan.BAK │ │ │ │ │ ├── XTan.java │ │ │ │ │ └── XTan.~ava │ │ │ │ ├── definition.def │ │ │ │ ├── icon.gif │ │ │ │ ├── icon.pspimage │ │ │ │ └── sort.def │ │ ├── OR │ │ │ ├── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Make.bat │ │ │ │ ├── OR.java │ │ │ │ └── OR.~ava │ │ │ └── xdefinition.def │ │ ├── Physik │ │ │ ├── GedaempfteSchwingung │ │ │ │ ├── GedaempfteSchwingung.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.png │ │ │ ├── MUA │ │ │ │ ├── MUA.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Mov_caida │ │ │ │ ├── Mov_caida.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Senkrechter_Wurf │ │ │ │ ├── Senkrechter_Wurf.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Tiro_Parabolico │ │ │ │ ├── Senkrechter_Wurf.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── icon.png │ │ │ ├── info.xml │ │ │ └── xTiro_Parabolico │ │ │ │ ├── Senkrechter_Wurf.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ ├── Pins │ │ │ ├── InputPin │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── CElement.BAK │ │ │ │ │ ├── CElement.java │ │ │ │ │ ├── CElement.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── OutputPin │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── CElement.gif │ │ │ │ │ ├── CElement.java │ │ │ │ │ ├── CElement.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── ProcessManagement │ │ │ ├── Process │ │ │ │ ├── definition.def │ │ │ │ ├── icon.pspimage │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Input$1.class │ │ │ │ │ ├── Input$2.class │ │ │ │ │ ├── Input$3.class │ │ │ │ │ ├── Input.class │ │ │ │ │ ├── Input.java │ │ │ │ │ ├── Input.jfm │ │ │ │ │ ├── Input.~ava │ │ │ │ │ ├── Input.~fm │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SubVM.java │ │ │ │ │ ├── SubVM.~ava │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── STOP │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── CElement.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── STOP.java │ │ │ │ │ └── STOP.~ava │ │ │ ├── Xdefinition.def │ │ │ └── icon32.png │ │ ├── Sockets │ │ │ ├── SocketClient │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── SocketClient.java │ │ │ ├── SocketServer │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── SocketServer.java │ │ │ ├── definition.def │ │ │ ├── icon.gif │ │ │ └── info.xml │ │ ├── Sound │ │ │ ├── PlayFromFile │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── PlayFromFile.java │ │ │ ├── PlaySound │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── PlaySound.java │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── String │ │ │ ├── CONSOLEPRINTLN │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ConsolePrintln.java │ │ │ │ │ ├── ConsolePrintln.~ava │ │ │ │ │ ├── Length.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Concat │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Concat.BAK │ │ │ │ │ ├── Concat.java │ │ │ │ │ ├── Concat.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Const │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Const.BAK │ │ │ │ │ ├── Const.gif │ │ │ │ │ ├── Const.java │ │ │ │ │ ├── Const.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Constant_JV │ │ │ │ ├── ASCCI_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── CR_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── ESC_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── FF_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── LF_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── Null_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── SP_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── TAB_Const │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Const.BAK │ │ │ │ │ │ ├── Const.gif │ │ │ │ │ │ ├── Const.java │ │ │ │ │ │ ├── Const.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ └── sort.def │ │ │ ├── DBL2STR │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DBL2STR.BAK │ │ │ │ │ ├── DBL2STR.gif │ │ │ │ │ ├── DBL2STR.java │ │ │ │ │ ├── DBL2STR.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Format │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Format.java │ │ │ │ │ ├── Format.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── HTML_Constant │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JVLabel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── INT2HEX │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── INT2HEX.gif │ │ │ │ │ ├── INT2HEX.java │ │ │ │ │ ├── INT2HEX.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── INT2STR │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── INT2STR.gif │ │ │ │ │ ├── INT2STR.java │ │ │ │ │ ├── INT2STR.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── LEN │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Length.java │ │ │ │ │ ├── Length.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Message │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Message.BAK │ │ │ │ │ ├── Message.gif │ │ │ │ │ ├── Message.java │ │ │ │ │ └── Message.~ava │ │ │ ├── STR2DBL │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── STR2DBL.BAK │ │ │ │ │ ├── STR2DBL.gif │ │ │ │ │ ├── STR2DBL.java │ │ │ │ │ ├── STR2DBL.~ava │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── StrFcn_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Concat.BAK │ │ │ │ │ ├── Concat.java │ │ │ │ │ ├── Concat.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── circuitIcon.gif │ │ │ │ │ └── frontIcon.gif │ │ │ ├── StringConversion │ │ │ │ ├── DBL2STR │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── DBL2STR.BAK │ │ │ │ │ │ ├── DBL2STR.gif │ │ │ │ │ │ ├── DBL2STR.java │ │ │ │ │ │ ├── DBL2STR.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── INT2HEX │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── INT2HEX.gif │ │ │ │ │ │ ├── INT2HEX.java │ │ │ │ │ │ ├── INT2HEX.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── INT2STR │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── INT2STR.gif │ │ │ │ │ │ ├── INT2STR.java │ │ │ │ │ │ ├── INT2STR.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── STR2DBL │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── STR2DBL.BAK │ │ │ │ │ │ ├── STR2DBL.gif │ │ │ │ │ │ ├── STR2DBL.java │ │ │ │ │ │ ├── STR2DBL.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ └── sort.def │ │ │ ├── SubString │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SubString.java │ │ │ │ │ └── SubString.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── SubVM │ │ │ ├── definition.def │ │ │ ├── icon.pspimage │ │ │ └── info.xml │ │ ├── SystemControl │ │ │ ├── App_Abort_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── App_Abort_JV.java │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ ├── CMDWRITE │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── cmdWrite_JV.java │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── manifest.mf │ │ │ └── sort.def │ │ ├── TP │ │ │ ├── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Make.bat │ │ │ │ ├── TP.java │ │ │ │ └── TP.~ava │ │ │ └── xdefinition.def │ │ ├── VectorenMatrix │ │ │ ├── 1D Graph Generator │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── ExpressionParser │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── Main.~ava │ │ │ │ │ ├── Parser.BAK │ │ │ │ │ ├── Parser.java │ │ │ │ │ ├── Parser.~ava │ │ │ │ │ ├── Var.java │ │ │ │ │ ├── Var.~ava │ │ │ │ │ ├── Visual.form │ │ │ │ │ ├── Visual.java │ │ │ │ │ └── Visual.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MathGraphGenerator.BAK │ │ │ │ │ ├── MathGraphGenerator.java │ │ │ │ │ └── MathGraphGenerator.~ava │ │ │ ├── 1DConstString │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── StrConst1D.java │ │ │ │ │ └── StrConst1D.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── 1DCopy │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Copy1D.java │ │ │ │ │ ├── Copy1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DDoubleTo1DInteger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DDoubleTo1DString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DGetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Getter1D.java │ │ │ │ │ ├── Getter1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DIntegerTo1DDouble │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DLength │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Length1D.java │ │ │ │ │ ├── Length1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DNoiseGenerator │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── NoiseGenerator1D.java │ │ │ │ │ └── NoiseGenerator1D.~ava │ │ │ ├── 1DSetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Setter1D.java │ │ │ │ │ └── Setter1D.~ava │ │ │ ├── 1DStringTo1DDouble │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 1DTo2D │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Converter1D2D.java │ │ │ │ │ ├── Converter1D2D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DBooleanTo2DString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── UniversalDoubleToString.~ava │ │ │ ├── 2DDoubleTo2DString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── UniversalDoubleToString.~ava │ │ │ ├── 2DGetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Getter2D.java │ │ │ │ │ └── Make.bat │ │ │ ├── 2DInfo │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Info2D.java │ │ │ │ │ ├── Info2D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DIntegerTo2DString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── UniversalDoubleToString.~ava │ │ │ ├── 2DSetter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Setter2D.java │ │ │ │ │ └── Setter2D.~ava │ │ │ ├── 2DStringMemTable │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MemTable.java │ │ │ │ │ └── MemTable.~ava │ │ │ ├── 2DStringTo2DBoolean │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DStringTo2DDouble │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DStringTo2DInteger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DTo1D │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Converter2D1D.java │ │ │ │ │ ├── Converter2D1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DTo1DByte │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Converter2D1D.java │ │ │ │ │ ├── Converter2D1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── 2DTo1D_String │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Converter2D1D.java │ │ │ │ │ ├── Converter2D1D.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── Matrix │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ └── Verteiler.BAK │ │ │ ├── MatrixAdd │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixAdd.java │ │ │ │ │ └── MatrixAdd.~ava │ │ │ ├── MatrixByte │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ └── Verteiler.BAK │ │ │ ├── MatrixInteger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ └── Verteiler.BAK │ │ │ ├── MatrixMul │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixMul.java │ │ │ │ │ └── MatrixMul.~ava │ │ │ ├── Matrix_NXM │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ └── Verteiler.BAK │ │ │ ├── Operator1D │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Operator1D.java │ │ │ │ │ └── Operator1D.~ava │ │ │ ├── Persistence │ │ │ │ ├── 2D_APPEND_RECORD_TO_TEXTFILE │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Append2DStringToFile.java │ │ │ │ │ │ ├── Append2DStringToFile.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── 2D_ENHANCED_STRING_CSV_Reader │ │ │ │ │ ├── src │ │ │ │ │ │ ├── CSVReader.BAK │ │ │ │ │ │ ├── CSVReader.java │ │ │ │ │ │ ├── CSVReader.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ │ └── xdefinition.def │ │ │ │ ├── 2D_STRING_CSV_Reader │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── CSVReader.BAK │ │ │ │ │ │ ├── CSVReader.java │ │ │ │ │ │ ├── CSVReader.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── 2D_STRING_CSV_Writer │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── CSVWriter.java │ │ │ │ │ │ ├── CSVWriter.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── StringMatrix │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ ├── MyTableEditor.java │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ └── Verteiler.BAK │ │ │ ├── VectorByte │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ ├── Vector.java │ │ │ │ │ └── Vector.~ava │ │ │ ├── VectorDouble │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ ├── Vector.java │ │ │ │ │ └── Vector.~ava │ │ │ ├── VectorDouble_NXM │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MatrixNXM.java │ │ │ │ │ ├── MatrixNXM.~ava │ │ │ │ │ ├── MyTableEditor.~ava │ │ │ │ │ └── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ └── MyTableEditor.java │ │ │ ├── VectorInteger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ ├── Vector.java │ │ │ │ │ └── Vector.~ava │ │ │ ├── VectorString │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTableEditor │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── DialogNew.form │ │ │ │ │ │ ├── DialogNew.java │ │ │ │ │ │ ├── MyTableEditor.form │ │ │ │ │ │ └── MyTableEditor.java │ │ │ │ │ ├── Vector.java │ │ │ │ │ └── Vector.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── Verteiler │ │ │ ├── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Make.bat │ │ │ │ ├── Verteiler.BAK │ │ │ │ ├── Verteiler.java │ │ │ │ └── Verteiler.~ava │ │ │ └── xdefinition.def │ │ ├── definition.def │ │ ├── description_de.html │ │ ├── description_en.html │ │ ├── description_es.html │ │ ├── icon32.png │ │ ├── info.xml │ │ ├── jmr-ce-package01 │ │ │ ├── Blink │ │ │ │ ├── Blink.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Carga_Datos │ │ │ │ ├── Carga_Datos.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Contador_BCD │ │ │ │ ├── Contador_BCD.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── Escalar │ │ │ │ ├── Escalar.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Leer_tabla │ │ │ │ ├── Leer_tabla.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── MUA │ │ │ │ ├── MUA.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── Monoestable │ │ │ │ ├── Monoestable.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── Mov_caida │ │ │ │ ├── Mov_caida.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Multivibrador │ │ │ │ ├── Multivibrador.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── RS Flip Flop │ │ │ │ ├── RS Flip Flop.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es3.jpg │ │ │ │ └── icon.gif │ │ │ ├── Registrado_M_2C │ │ │ │ ├── Registrado_M_1C.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Registrador_A_1C │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.gif │ │ │ │ └── registrador.vlogic │ │ │ ├── Registrador_A_2C │ │ │ │ ├── Registrador 2 Canales.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Registro_T_1C │ │ │ │ ├── Registro_T_1C.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Registro_T_2C │ │ │ │ ├── Registro_T_2C.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Semaforo │ │ │ │ ├── Semaf1.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── doc_de │ │ │ │ └── index.html │ │ │ ├── doc_en │ │ │ │ └── index.html │ │ │ ├── doc_es │ │ │ │ └── index.html │ │ │ ├── generador impulsos │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── generador impulsos.vlogic │ │ │ │ └── icon.gif │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── sort.def │ │ └── user-defined │ │ │ ├── Blink │ │ │ ├── Blink.vlogic │ │ │ ├── blink.gif │ │ │ ├── blink1.gif │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Carga_Datos │ │ │ ├── Carga_Datos.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Contador_BCD │ │ │ ├── Contador_BCD.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Escalar │ │ │ ├── Escalar.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Leer_tabla │ │ │ ├── Leer_tabla.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── MUA │ │ │ ├── MUA.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Monoestable │ │ │ ├── Monoestable.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Mov_caida │ │ │ ├── Mov_caida.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Multivibrador │ │ │ ├── Multivibrador.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── RS Flip Flop │ │ │ ├── RS Flip Flop.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Registrado_M_2C │ │ │ ├── Registrado_M_1C.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Registrador_A_1C │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ ├── icon.gif │ │ │ └── registrador.vlogic │ │ │ ├── Registrador_A_2C │ │ │ ├── Registrador 2 Canales.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Registrador_M_1C │ │ │ ├── Registrador Manual 1 Canal.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Registro_T_1C │ │ │ ├── Registro_T_1C.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Registro_T_2C │ │ │ ├── Registro_T_2C.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Semaforo │ │ │ ├── Semaf1.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── generador impulsos │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ ├── generador impulsos.vlogic │ │ │ └── icon.gif │ │ │ ├── icon.png │ │ │ └── xdefinition.def │ ├── Documentations │ │ ├── dc-68f8102c-5160-4399-bc42-339db1b14e36 │ │ │ ├── Calculado con MyOpenLab.pdf │ │ │ ├── Calculating with MyOpenLab.pdf │ │ │ ├── Canvas.pdf │ │ │ ├── Circuitos Digitales.pdf │ │ │ ├── Datos_MyOpenLab.pdf │ │ │ ├── Flowchart Guide - MyOpenlab V3.0.8.3.pdf │ │ │ ├── Guia de Usuario de MyOpenlab 3.0.8.4.pdf │ │ │ ├── Guia_Diagramas_Flujo V3.0.8.3.pdf │ │ │ ├── MyOpenLab y Arduino con Firmata.pdf │ │ │ ├── Robotica_MyOpenLab.pdf │ │ │ ├── Simulacion_Modelos_ Mat_Temporales.pdf │ │ │ ├── User's Guide - MyOpenlab 3.0.8.4.pdf │ │ │ ├── aprendiendo a programar con diagramas de flujo.pdf │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── project.myopenlab │ │ ├── definition.def │ │ ├── description_de.html │ │ ├── description_en.html │ │ ├── description_es.html │ │ ├── icon32.png │ │ ├── info.xml │ │ └── project.myopenlab │ ├── Drivers │ │ ├── ._.DS_Store │ │ ├── Desktop.ini │ │ ├── MyOpenLab.RS232 │ │ │ ├── driver.info │ │ │ └── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Driver.java │ │ │ │ ├── Driver.~ava │ │ │ │ ├── Make.bat │ │ │ │ ├── RS232.java │ │ │ │ └── RS232.~ava │ │ ├── MyOpenLab.RS232_JSSC │ │ │ ├── ._.DS_Store │ │ │ ├── build.xml │ │ │ ├── driver.info │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── ._.DS_Store │ │ │ │ ├── Clean.bat │ │ │ │ ├── Driver.java │ │ │ │ ├── Driver.~ava │ │ │ │ ├── Make.bat │ │ │ │ ├── RS232.java │ │ │ │ └── RS232.~ava │ │ ├── Velleman.K8047 │ │ │ ├── driver.info │ │ │ └── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── DataSource.java │ │ │ │ ├── DataSource.~ava │ │ │ │ ├── Datensatz.java │ │ │ │ ├── Datensatz.~ava │ │ │ │ ├── K8047.java │ │ │ │ ├── K8047.~ava │ │ │ │ ├── K8047d.java │ │ │ │ ├── K8047d.~ava │ │ │ │ └── Make.bat │ │ ├── Velleman.K8055_v1.1 │ │ │ ├── driver.info │ │ │ ├── license.txt │ │ │ └── src │ │ │ │ ├── Clean.bat │ │ │ │ ├── Driver.java │ │ │ │ ├── Driver.~ava │ │ │ │ ├── K8055.java │ │ │ │ ├── K8055.~ava │ │ │ │ └── Make.bat │ │ └── modusbus.CompuLab │ │ │ ├── build.xml │ │ │ ├── clusbdll │ │ │ ├── CLUSB.bas │ │ │ ├── CLUSB.cfg │ │ │ ├── CLUSB.dll │ │ │ ├── CLUSB.dof │ │ │ ├── CLUSB.dpr │ │ │ ├── CLUSB.~dpr │ │ │ ├── COMBULABusb.frm │ │ │ ├── ClUSB.exe │ │ │ ├── ClUSB.vbp │ │ │ └── ClUSB.vbw │ │ │ ├── driver.info │ │ │ ├── lib │ │ │ └── jna.jar │ │ │ ├── license.txt │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ │ └── src │ │ │ ├── CLusb.java │ │ │ ├── CLusb.~ava │ │ │ ├── Clean.bat │ │ │ ├── Driver.java │ │ │ ├── Driver.~ava │ │ │ └── Make.bat │ ├── Folder.png │ ├── FrontElements │ │ ├── 2Automation │ │ │ ├── Barrera │ │ │ │ ├── Barrera.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Cilindro_Neumatico │ │ │ │ ├── Cilindro_Neumatico.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Cinta_transportadora │ │ │ │ ├── Cinta_trasnportadora.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Fotocelula │ │ │ │ ├── Fotocelula.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Industrial_Buttons_JV │ │ │ │ ├── Button_1_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_2_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_3_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_4_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_5_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_6_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_7_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_8_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Button_9_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Button.gif │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── LED_Ind_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.BAK │ │ │ │ │ │ ├── LED.gif │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LED.~ava │ │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── LEDPanel.~ava │ │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── LED.gif │ │ │ │ │ │ ├── doc.html │ │ │ │ │ │ ├── doc_en.html │ │ │ │ │ │ ├── doc_es.html │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── led.svg │ │ │ │ │ │ ├── led1.gif │ │ │ │ │ │ └── led2.gif │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── led.svg │ │ │ │ ├── Square_LED_Ind_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.BAK │ │ │ │ │ │ ├── LED.gif │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LED.~ava │ │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── LEDPanel.~ava │ │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── LED.gif │ │ │ │ │ │ ├── doc.html │ │ │ │ │ │ ├── doc_en.html │ │ │ │ │ │ ├── doc_es.html │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── led.svg │ │ │ │ │ │ ├── led1.gif │ │ │ │ │ │ └── led2.gif │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ └── led.svg │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ └── sort.def │ │ │ ├── Motor │ │ │ │ ├── Motor.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Pipeline_JV │ │ │ │ ├── Down_Derivation_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Down_Left_Elbow_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Horizontal_Pipe_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Left_Derivation_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Left_Down_Elbow_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Left_Up_Elbow_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Right_Derivation_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Up_Derivation_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Up_Right_Elbow_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Vertical_Pipe_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ └── sort.def │ │ │ ├── Puerta1 │ │ │ │ ├── Puerta1.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Tanks_JV │ │ │ │ ├── Tank_1_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── FuellstandAnzeige.gif │ │ │ │ │ │ ├── FuellstandAnzeige.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_2_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_3_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_4_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_5_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_6_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Tank_7_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ └── sort.def │ │ │ ├── Ultrasonidos │ │ │ │ ├── Ultrasonidos.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Valves_JV │ │ │ │ ├── Down_Valve_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Left_Valve_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Right_Valve_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Up_Valve_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── LED.java │ │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ │ ├── Pipe.gif │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ └── info.xml │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2Boolean │ │ │ ├── Button │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ ├── Taster.gif │ │ │ │ │ ├── Taster.java │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ └── TasterPanel.~ava │ │ │ ├── Button2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ ├── Taster.gif │ │ │ │ │ ├── Taster.java │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ └── TasterPanel.~ava │ │ │ ├── Button_Press_Switch │ │ │ │ ├── Button_Press_Switch.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Indicator_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Interruptor3 │ │ │ │ ├── Interruptor3.vlogic │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── KippSchalter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── KippSchalter.BAK │ │ │ │ │ ├── KippSchalter.java │ │ │ │ │ ├── KippSchalter.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ └── SchalterPanel.~ava │ │ │ ├── LED │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LED.BAK │ │ │ │ │ ├── LED.gif │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LED.~ava │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ ├── LEDPanel.~ava │ │ │ │ │ ├── doc │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── icon.gif │ │ │ │ │ ├── led.svg │ │ │ │ │ ├── led1.gif │ │ │ │ │ └── led2.gif │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── led.svg │ │ │ ├── LEDRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LED.BAK │ │ │ │ │ ├── LED.gif │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LED.~ava │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ ├── LEDPanel.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── LED_rectangle │ │ │ │ ├── LED_rectangle.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── doc_es2.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── Lamp │ │ │ │ ├── Lamp.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── Led_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── LigthBulb_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Relais │ │ │ │ ├── Relais.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── SchiebeSchalter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ ├── SchalterPanel.~ava │ │ │ │ │ ├── SchiebeSchalter.BAK │ │ │ │ │ ├── SchiebeSchalter.java │ │ │ │ │ └── SchiebeSchalter.~ava │ │ │ ├── SchiebeSchalter2 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ ├── SchalterPanel.~ava │ │ │ │ │ ├── SchiebeSchalter.BAK │ │ │ │ │ ├── SchiebeSchalter.java │ │ │ │ │ └── SchiebeSchalter.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── Taster │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ ├── Taster.java │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ └── TasterPanel.java │ │ │ ├── ToggleButton │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ ├── ToggleButton.java │ │ │ │ │ └── ToggleButton.~ava │ │ │ ├── TrafficLigth_2_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── TrafficLigth_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── UserdefinedBooleanDisplay │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Circuit.java │ │ │ │ │ ├── Circuit.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2Dekoratoren │ │ │ ├── Fill_Arc_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RoundRect.gif │ │ │ │ │ ├── RoundRect.java │ │ │ │ │ └── RoundRect.~ava │ │ │ ├── GIF_Container_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XLabel.java │ │ │ │ │ ├── XLabel.~ava │ │ │ │ │ └── label.gif │ │ │ ├── Image_2_0 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XImage.BAK │ │ │ │ │ ├── XImage.java │ │ │ │ │ └── XImage.~ava │ │ │ ├── Label │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XLabel.java │ │ │ │ │ ├── XLabel.~ava │ │ │ │ │ └── label.gif │ │ │ ├── Line_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XLabel.java │ │ │ │ │ └── label.gif │ │ │ ├── Path │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Path.java │ │ │ │ │ ├── Path.~ava │ │ │ │ │ ├── Spline.~ava │ │ │ │ │ └── draw-path.png │ │ │ ├── RoundRect │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── RoundRect.gif │ │ │ │ │ ├── RoundRect.java │ │ │ │ │ ├── RoundRect.~ava │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── SVGImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── icon.png │ │ │ ├── SVGSalamanderImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── icon.png │ │ │ ├── Triangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── Triangle_Down_JV │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── Triangle_Left_JV │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── Triangle_Rigth_JV │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── UserDef_Triangle_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Triangle.gif │ │ │ │ │ ├── Triangle.java │ │ │ │ │ ├── Triangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── XRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Rectangle.gif │ │ │ │ │ ├── Rectangle.~ava │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ ├── XRectangle.java │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── ellipse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Ellipse.BAK │ │ │ │ │ ├── Ellipse.gif │ │ │ │ │ ├── Ellipse.java │ │ │ │ │ ├── Ellipse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2Extras │ │ │ ├── Analog Display Example │ │ │ │ ├── Analog Display Example.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es2.jpg │ │ │ │ ├── doc_es3.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── Canvas │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.java │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── ClockDemo │ │ │ │ ├── ClockDemo.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── Date Demo │ │ │ │ ├── Date Demo.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── KeyPanel │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── Element.~ava │ │ │ │ │ ├── KeyPanel.java │ │ │ │ │ ├── KeyPanel.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── PLC_V1 │ │ │ │ ├── PLC_V1.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── ScrollImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyImage.java │ │ │ │ │ ├── MyImage.~ava │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── ShowImage.BAK │ │ │ │ │ ├── ShowImage.java │ │ │ │ │ └── ShowImage.~ava │ │ │ ├── Seg7 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Seg7.BAK │ │ │ │ │ ├── Seg7.gif │ │ │ │ │ ├── Seg7.java │ │ │ │ │ └── icon.gif │ │ │ ├── Seg7AndDec │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Seg7AndDec.BAK │ │ │ │ │ ├── Seg7AndDec.java │ │ │ │ │ └── Seg7AndDec.~ava │ │ │ ├── ShowImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── ShowImage.BAK │ │ │ │ │ ├── ShowImage.java │ │ │ │ │ └── ShowImage.~ava │ │ │ ├── Tastatur │ │ │ │ ├── DigitalCircuit.png │ │ │ │ ├── Tastatur.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.png │ │ │ ├── Weather │ │ │ │ ├── Weather.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.png │ │ │ │ └── xdefinition.def │ │ │ ├── definition.def │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2Graph │ │ │ ├── OscilloscopeXY2 │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ ├── Kopie von OscPanel.javaXXXX │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ ├── Property.java │ │ │ │ │ ├── Property.~ava │ │ │ │ │ ├── PropertyLanguage.java │ │ │ │ │ ├── PropertyLanguage.~ava │ │ │ │ │ ├── VSMainWithPropertyManager.java │ │ │ │ │ ├── VSMainWithPropertyManager.~ava │ │ │ │ │ ├── VSPropertyManager.java │ │ │ │ │ └── VSPropertyManager.~ava │ │ │ ├── Oscilloscope_3_0 │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ ├── Kopie von OscPanel.javaXXXX │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.gif │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ ├── Property.java │ │ │ │ │ ├── Property.~ava │ │ │ │ │ ├── PropertyLanguage.java │ │ │ │ │ ├── PropertyLanguage.~ava │ │ │ │ │ ├── VSMainWithPropertyManager.java │ │ │ │ │ ├── VSMainWithPropertyManager.~ava │ │ │ │ │ ├── VSPropertyManager.java │ │ │ │ │ └── VSPropertyManager.~ava │ │ │ ├── TimeGraph │ │ │ │ ├── TimeGraph.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ ├── oscilloscope.gif │ │ │ │ └── xdefinition.def │ │ │ ├── TimeGraphX │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ ├── Kopie von OscPanel.javaXXXX │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ ├── Property.java │ │ │ │ │ ├── Property.~ava │ │ │ │ │ ├── PropertyLanguage.java │ │ │ │ │ ├── PropertyLanguage.~ava │ │ │ │ │ ├── VSMainWithPropertyManager.java │ │ │ │ │ ├── VSMainWithPropertyManager.~ava │ │ │ │ │ ├── VSPropertyManager.java │ │ │ │ │ └── VSPropertyManager.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon.png │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ ├── old │ │ │ │ ├── DataLogger │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── DataLogger.BAK │ │ │ │ │ │ ├── DataLogger.java │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Panel.java │ │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ └── Main.java │ │ │ │ ├── Oscilloscope │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ └── Main.java │ │ │ │ ├── Oscilloscope2_1 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ │ ├── Oscilloscope.gif │ │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ └── Main.java │ │ │ │ ├── OscilloscopeXY │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ │ ├── Oscilloscope.gif │ │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ └── Main.java │ │ │ │ ├── definition.def │ │ │ │ └── icon.png │ │ │ └── sort.def │ │ ├── 2Matrix_Vectors │ │ │ ├── List1D │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── List1D.gif │ │ │ │ │ ├── List1D.java │ │ │ │ │ ├── List1D.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── icon.gif │ │ │ ├── Table │ │ │ │ └── xdefinition.def │ │ │ ├── Table_1_1 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyTable.java │ │ │ │ │ ├── MyTable.~ava │ │ │ │ │ ├── MyTableModel.~ava │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── icon.png │ │ │ │ │ └── xPanel.~java │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── 2Numerisch │ │ │ ├── AnalogAnzeige2 │ │ │ │ ├── Anzeige.vlogic │ │ │ │ ├── definition.~ava │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ ├── icon.jpg │ │ │ │ ├── potenciometro1.gif │ │ │ │ ├── potenciometro2.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Analoge Anzeige │ │ │ │ ├── src │ │ │ │ │ ├── AnalogAnzeige.BAK │ │ │ │ │ ├── AnalogAnzeige.java │ │ │ │ │ ├── AnalogAnzeige.~ava │ │ │ │ │ ├── AnalogAnzeigePanel.BAK │ │ │ │ │ ├── AnalogAnzeigePanel.java │ │ │ │ │ ├── AnalogAnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Analoge Anzeige_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── AnalogAnzeige.BAK │ │ │ │ │ ├── AnalogAnzeige.gif │ │ │ │ │ ├── AnalogAnzeige.java │ │ │ │ │ ├── AnalogAnzeige.~ava │ │ │ │ │ ├── AnalogAnzeigePanel.BAK │ │ │ │ │ ├── AnalogAnzeigePanel.java │ │ │ │ │ ├── AnalogAnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Anzeige │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ ├── src │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── BalkenRegler │ │ │ │ ├── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── BalkenRegler.BAK │ │ │ │ │ ├── BalkenRegler.gif │ │ │ │ │ ├── BalkenRegler.java │ │ │ │ │ ├── BalkenRegler.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── BalkenRegler_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── BalkenRegler.BAK │ │ │ │ │ ├── BalkenRegler.gif │ │ │ │ │ ├── BalkenRegler.java │ │ │ │ │ ├── BalkenRegler.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Battery_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── ColorBar_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FuellstandAnzeige.BAK │ │ │ │ │ ├── FuellstandAnzeige.gif │ │ │ │ │ ├── FuellstandAnzeige.java │ │ │ │ │ ├── FuellstandAnzeige.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── DBLSpinner │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Spinner.java │ │ │ │ │ └── Spinner.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── DBLSpinner_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Spinner.java │ │ │ │ │ ├── Spinner.~ava │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── spinner.gif │ │ │ ├── Display3 │ │ │ │ ├── Display3.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── FuellstandAnzeige │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ ├── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FuellstandAnzeige.BAK │ │ │ │ │ ├── FuellstandAnzeige.gif │ │ │ │ │ ├── FuellstandAnzeige.java │ │ │ │ │ ├── FuellstandAnzeige.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Gauge │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Gauge.BAK │ │ │ │ │ ├── Gauge.java │ │ │ │ │ ├── Gauge.pspimage │ │ │ │ │ ├── Gauge.~ava │ │ │ │ │ ├── GaugePanel.BAK │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── GaugePanel.javax │ │ │ │ │ ├── GaugePanel.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── Gauge2 │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Gauge.BAK │ │ │ │ │ ├── Gauge.java │ │ │ │ │ ├── Gauge.pspimage │ │ │ │ │ ├── Gauge.~ava │ │ │ │ │ ├── GaugeJV.gif │ │ │ │ │ ├── GaugePanel.BAK │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── GaugePanel.javax │ │ │ │ │ ├── GaugePanel.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Gauge_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Gauge.BAK │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── Gauge.java │ │ │ │ │ ├── Gauge.pspimage │ │ │ │ │ ├── Gauge.~ava │ │ │ │ │ ├── GaugePanel.BAK │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── GaugePanel.javax │ │ │ │ │ ├── GaugePanel.~ava │ │ │ │ │ ├── Gauge_JV.gif │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── H-V-Slider_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── H_Slider_JV.gif │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Pane_Text_Control_JV.java │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Text_Control_JV.java │ │ │ │ │ └── icon.gif │ │ │ ├── INTCombo │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── INTCombo.BAK │ │ │ │ │ ├── INTCombo.java │ │ │ │ │ ├── INTCombo.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── Properties.java │ │ │ │ └── xdefinition.def │ │ │ ├── INTCombo_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── INTCombo.BAK │ │ │ │ │ ├── INTCombo.gif │ │ │ │ │ ├── INTCombo.java │ │ │ │ │ ├── INTCombo.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ └── icon.gif │ │ │ ├── INTSpinner │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Spinner.java │ │ │ │ │ ├── Spinner.~ava │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── spinner.gif │ │ │ │ └── xdefinition.def │ │ │ ├── INTSpinner_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Spinner.java │ │ │ │ │ ├── Spinner.~ava │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── spinner.gif │ │ │ ├── LEDBar │ │ │ │ ├── LEDBar.vlogic │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Linear_BarGraph_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Linear_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── MultiSchalter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Regler.BAK │ │ │ │ │ ├── Regler.gif │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.pspimage │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ ├── ReglerPanel.javax │ │ │ │ │ └── icon.gif │ │ │ ├── Numeric_Indicator_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── RGB_Led │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LED.BAK │ │ │ │ │ ├── LED.gif │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LED.~ava │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── RectDisplay_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Regler │ │ │ │ ├── build.xml │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Properties.BAK │ │ │ │ │ ├── Regler.gif │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ ├── ReglerPanel.~ava │ │ │ │ │ ├── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ ├── Regler_Double_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Properties.BAK │ │ │ │ │ ├── Regler.gif │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ ├── ReglerPanel.~ava │ │ │ │ │ ├── doc_es.html │ │ │ │ │ └── icon.gif │ │ │ ├── Regler_Integer_JV │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Regler.BAK │ │ │ │ │ ├── Regler.gif │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.pspimage │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ ├── ReglerPanel.javax │ │ │ │ │ └── icon.gif │ │ │ ├── StatusAnzeige │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── StatusDisplay.java │ │ │ │ │ └── StatusDisplay.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── Steel_Gauges_JV │ │ │ │ ├── Air_Compass_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Altimeter_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Clock_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Compass_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Horizon_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Level_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Radial_BarGraph_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── Radial_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── StopWatch_JV │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── Gauge.gif │ │ │ │ │ │ ├── GaugeCircuit.java │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── icon32.png │ │ │ │ ├── info.xml │ │ │ │ ├── library.png │ │ │ │ └── sort.def │ │ │ ├── Switch2 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JavaApplication2 │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── javaapplication2 │ │ │ │ │ │ │ ├── MultiSwitch.form │ │ │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ │ │ ├── NewJFrame.form │ │ │ │ │ │ │ └── NewJFrame.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ ├── MultiSwitch.~ava │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ ├── Taster.gif │ │ │ │ │ ├── Taster.java │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ └── icon.gif │ │ │ │ └── xdefinition.def │ │ │ ├── Switch_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── JavaApplication2 │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── javaapplication2 │ │ │ │ │ │ ├── MultiSwitch.form │ │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ │ ├── NewJFrame.form │ │ │ │ │ │ └── NewJFrame.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ ├── MultiSwitch.~ava │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ ├── Taster.gif │ │ │ │ │ ├── Taster.java │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ ├── TasterPanel.~ava │ │ │ │ │ └── icon.gif │ │ │ ├── Tank_8_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ ├── Anzeige.gif │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ ├── Anzeige.~ava │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2Robotics │ │ │ ├── RobotArm3D_1_0 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── RobotCanvas.java │ │ │ │ │ └── RobotCanvas.~ava │ │ │ ├── RobotCanvas │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── RobotCanvas.java │ │ │ │ │ └── RobotCanvas.~ava │ │ │ ├── RobotCanvas_1_1 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── RobotCanvas.java │ │ │ │ │ └── RobotCanvas.~ava │ │ │ ├── SimpleRobot3D │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── RobotCanvas.java │ │ │ │ │ └── RobotCanvas.~ava │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ └── info.xml │ │ ├── 2String │ │ │ ├── Ausgabe │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Ausgabe.gif │ │ │ │ │ ├── Ausgabe.java │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── icon.gif │ │ │ ├── Eingabe2 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Eingabe.BAK │ │ │ │ │ ├── Eingabe.gif │ │ │ │ │ ├── Eingabe.java │ │ │ │ │ ├── Eingabe.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── icon.gif │ │ │ ├── Eingabe2_1 │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Eingabe.BAK │ │ │ │ │ ├── Eingabe.java │ │ │ │ │ ├── Eingabe.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ │ └── xdefinition.def │ │ │ ├── HTML_Text_Indicator_JV │ │ │ │ ├── Pane_Text_Indicator_JV.class │ │ │ │ ├── Text_Indicator_JV.class │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Pane_Text_Indicator_JV.java │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Text_Indicator_JV.gif │ │ │ │ │ ├── Text_Indicator_JV.java │ │ │ │ │ └── icon.gif │ │ │ ├── Text_Control_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Pane_Text_Control_JV.java │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Text_Control_JV.gif │ │ │ │ │ ├── Text_Control_JV.java │ │ │ │ │ └── icon.gif │ │ │ ├── Text_Indicator_JV │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Pane_Text_Indicator_JV.java │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Text_Indicator_JV.gif │ │ │ │ │ ├── Text_Indicator_JV.java │ │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ └── sort.def │ │ ├── 2user-defined │ │ │ ├── definition.def │ │ │ ├── info.xml │ │ │ └── library.png │ │ ├── Dekoratoren │ │ │ ├── Image_1_0 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XImage.BAK │ │ │ │ │ ├── XImage.java │ │ │ │ │ └── XImage.~ava │ │ │ ├── Label │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XLabel.java │ │ │ │ │ └── XLabel.~ava │ │ │ ├── XRectangle │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XRectangle.BAK │ │ │ │ │ ├── XRectangle.java │ │ │ │ │ └── XRectangle.~ava │ │ │ ├── XText │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── XText.BAK │ │ │ │ │ ├── XText.java │ │ │ │ │ └── XText.~ava │ │ │ ├── ellipse │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Ellipse.BAK │ │ │ │ │ ├── Ellipse.java │ │ │ │ │ ├── Ellipse.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── icon32.png │ │ │ └── xdefinition.def │ │ ├── Input │ │ │ ├── BalkenRegler │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── BalkenRegler.BAK │ │ │ │ │ ├── BalkenRegler.java │ │ │ │ │ ├── BalkenRegler.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Buttons │ │ │ │ ├── Button │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ └── TasterPanel.~ava │ │ │ │ ├── KippSchalter │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── KippSchalter.BAK │ │ │ │ │ │ ├── KippSchalter.java │ │ │ │ │ │ ├── KippSchalter.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ │ └── SchalterPanel.~ava │ │ │ │ ├── SchiebeSchalter │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ │ ├── SchalterPanel.~ava │ │ │ │ │ │ ├── SchiebeSchalter.BAK │ │ │ │ │ │ ├── SchiebeSchalter.java │ │ │ │ │ │ └── SchiebeSchalter.~ava │ │ │ │ ├── SchiebeSchalter2 │ │ │ │ │ ├── ._.DS_Store │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── SchalterPanel.BAK │ │ │ │ │ │ ├── SchalterPanel.java │ │ │ │ │ │ ├── SchalterPanel.~ava │ │ │ │ │ │ ├── SchiebeSchalter.BAK │ │ │ │ │ │ ├── SchiebeSchalter.java │ │ │ │ │ │ ├── SchiebeSchalter.~ava │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── SchiebeSchalter.gif │ │ │ │ │ │ ├── doc.html │ │ │ │ │ │ ├── doc_es.html │ │ │ │ │ │ ├── icon.gif │ │ │ │ │ │ ├── off.png │ │ │ │ │ │ ├── on.png │ │ │ │ │ │ └── schalter.svg │ │ │ │ ├── Taster │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ └── TasterPanel.java │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── Eingabe │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Eingabe.BAK │ │ │ │ │ ├── Eingabe.java │ │ │ │ │ ├── Eingabe.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── INTCombo │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── INTCombo.BAK │ │ │ │ │ ├── INTCombo.java │ │ │ │ │ ├── INTCombo.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── Properties.java │ │ │ ├── MultiSchalter │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Regler.BAK │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.pspimage │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ └── ReglerPanel.javax │ │ │ ├── Regler │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Properties.BAK │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ └── ReglerPanel.~ava │ │ │ ├── Regler2 │ │ │ │ ├── definition.BAK │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Properties.BAK │ │ │ │ │ ├── Regler.java │ │ │ │ │ ├── Regler.~ava │ │ │ │ │ ├── ReglerPanel.BAK │ │ │ │ │ ├── ReglerPanel.java │ │ │ │ │ └── ReglerPanel.~ava │ │ │ ├── icon32.png │ │ │ ├── sort.def │ │ │ └── xdefinition.def │ │ ├── MCU │ │ │ └── Interpreter │ │ │ │ ├── definition.def │ │ │ │ └── icon.png │ │ ├── Output │ │ │ ├── Analoge Anzeige │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AnalogAnzeige.BAK │ │ │ │ │ ├── AnalogAnzeige.gif │ │ │ │ │ ├── AnalogAnzeige.java │ │ │ │ │ ├── AnalogAnzeigePanel.BAK │ │ │ │ │ ├── AnalogAnzeigePanel.java │ │ │ │ │ ├── AnalogAnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ └── icon.gif │ │ │ ├── Anzeige │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Anzeige.BAK │ │ │ │ │ ├── Anzeige.java │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ └── Make.bat │ │ │ ├── Ausgabe │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Ausgabe.BAK │ │ │ │ │ ├── Ausgabe.java │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── Canvas │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Canvas.java │ │ │ │ │ ├── Canvas.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── DataLogger │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── DataLogger.BAK │ │ │ │ │ ├── DataLogger.java │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ └── Properties │ │ │ │ │ └── Properties │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ └── Main.java │ │ │ ├── FuellstandAnzeige │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── AnzeigePanel.BAK │ │ │ │ │ ├── AnzeigePanel.java │ │ │ │ │ ├── AnzeigePanel.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FuellstandAnzeige.BAK │ │ │ │ │ ├── FuellstandAnzeige.java │ │ │ │ │ └── Make.bat │ │ │ ├── Gauge │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Gauge.BAK │ │ │ │ │ ├── Gauge.java │ │ │ │ │ ├── Gauge.pspimage │ │ │ │ │ ├── Gauge.~ava │ │ │ │ │ ├── GaugePanel.BAK │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ ├── GaugePanel.javax │ │ │ │ │ ├── GaugePanel.~ava │ │ │ │ │ └── Make.bat │ │ │ ├── LED │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── LED.gif │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ ├── doc │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── icon.gif │ │ │ │ │ ├── led.svg │ │ │ │ │ ├── led1.gif │ │ │ │ │ └── led2.gif │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── led.svg │ │ │ ├── Oscilloscope │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ └── Properties │ │ │ │ │ └── Properties │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ └── Main.java │ │ │ ├── Oscilloscope2_1 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ └── Properties │ │ │ │ │ └── Properties │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ └── Main.java │ │ │ ├── OscilloscopeXY │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── OscPanel.BAK │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ ├── Oscilloscope.BAK │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ └── Properties │ │ │ │ │ └── Properties │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── manifest.mf │ │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ │ └── src │ │ │ │ │ ├── FrameProperties.form │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ └── Main.java │ │ │ ├── RGB_Led │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LED.BAK │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LED.~ava │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ └── Make.bat │ │ │ ├── SVGImage │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── Scrollmage │ │ │ │ ├── build.xml │ │ │ │ ├── definition.def │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── MyImage.java │ │ │ │ │ ├── MyImage.~ava │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── ShowImage.BAK │ │ │ │ │ ├── ShowImage.java │ │ │ │ │ └── ShowImage.~ava │ │ │ ├── Seg7 │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Seg7.BAK │ │ │ │ │ └── Seg7.java │ │ │ ├── Seg7AndDec │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── Seg7AndDec.BAK │ │ │ │ │ ├── Seg7AndDec.java │ │ │ │ │ └── Seg7AndDec.~ava │ │ │ ├── ShowImage │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── ShowImage.BAK │ │ │ │ │ ├── ShowImage.java │ │ │ │ │ └── ShowImage.~ava │ │ │ ├── StatusAnzeige │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ ├── Panel.~ava │ │ │ │ │ ├── StatusDisplay.java │ │ │ │ │ └── StatusDisplay.~ava │ │ │ ├── UserdefinedBooleanDisplay │ │ │ │ ├── definition.def │ │ │ │ └── src │ │ │ │ │ ├── Circuit.java │ │ │ │ │ ├── Circuit.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── Panel.java │ │ │ │ │ └── Panel.~ava │ │ │ ├── _LED │ │ │ │ ├── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── LED.BAK │ │ │ │ │ ├── LED.java │ │ │ │ │ ├── LED.~ava │ │ │ │ │ ├── LEDPanel.BAK │ │ │ │ │ ├── LEDPanel.java │ │ │ │ │ ├── LEDPanel.~ava │ │ │ │ │ └── Make.bat │ │ │ │ └── xdefinition.def │ │ │ ├── icon32.png │ │ │ ├── sort.def │ │ │ └── xdefinition.def │ │ ├── Version_2_0 │ │ │ ├── Dekoratoren │ │ │ │ ├── Image_2_0 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── XImage.BAK │ │ │ │ │ │ ├── XImage.java │ │ │ │ │ │ └── XImage.~ava │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── EmbeddedFrontVM │ │ │ │ ├── definition.def │ │ │ │ ├── icon.pspimage │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Input.java │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── VMElement.java │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── Input │ │ │ │ ├── Buttons │ │ │ │ │ ├── Button2 │ │ │ │ │ │ ├── definition.def │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ │ └── TasterPanel.~ava │ │ │ │ │ ├── definition.def │ │ │ │ │ └── icon32.png │ │ │ │ ├── Eingabe2 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Eingabe.BAK │ │ │ │ │ │ ├── Eingabe.java │ │ │ │ │ │ ├── Eingabe.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Panel.java │ │ │ │ │ │ └── Panel.~ava │ │ │ │ ├── Regler2 │ │ │ │ │ ├── Regler.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── icon.gif │ │ │ │ │ ├── potenciometro1.gif │ │ │ │ │ └── potenciometro2.gif │ │ │ │ ├── Switch2 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── JavaApplication2 │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── javaapplication2 │ │ │ │ │ │ │ ├── MultiSwitch.form │ │ │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ │ │ ├── NewJFrame.form │ │ │ │ │ │ │ └── NewJFrame.java │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MultiSwitch.java │ │ │ │ │ │ ├── MultiSwitch.~ava │ │ │ │ │ │ ├── Panel.BAK │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ │ ├── Taster.BAK │ │ │ │ │ │ ├── Taster.java │ │ │ │ │ │ ├── Taster.~ava │ │ │ │ │ │ ├── TasterPanel.BAK │ │ │ │ │ │ ├── TasterPanel.java │ │ │ │ │ │ └── TasterPanel.~ava │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── Output │ │ │ │ ├── AnalogAnzeige2 │ │ │ │ │ ├── Anzeige.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── definition.~ava │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── icon.gif │ │ │ │ │ ├── icon.jpg │ │ │ │ │ ├── potenciometro1.gif │ │ │ │ │ └── potenciometro2.gif │ │ │ │ ├── Gauge │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── Gauge.BAK │ │ │ │ │ │ ├── Gauge.java │ │ │ │ │ │ ├── Gauge.pspimage │ │ │ │ │ │ ├── Gauge.~ava │ │ │ │ │ │ ├── GaugePanel.BAK │ │ │ │ │ │ ├── GaugePanel.java │ │ │ │ │ │ ├── GaugePanel.javax │ │ │ │ │ │ ├── GaugePanel.~ava │ │ │ │ │ │ └── Make.bat │ │ │ │ ├── Gauge2 │ │ │ │ │ └── definition.def │ │ │ │ ├── List1D │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── List1D.java │ │ │ │ │ │ ├── List1D.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── Panel.java │ │ │ │ │ │ └── Panel.~ava │ │ │ │ ├── OscilloscopeXY │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ │ ├── Kopie von OscPanel.javaXXXX │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MyGraph │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── MyGraph │ │ │ │ │ │ │ ├── BackGraphXY.java │ │ │ │ │ │ │ ├── FrameMain.form │ │ │ │ │ │ │ ├── FrameMain.java │ │ │ │ │ │ │ ├── GraphBackground.form │ │ │ │ │ │ │ ├── GraphBackground.java │ │ │ │ │ │ │ ├── MyGraph.form │ │ │ │ │ │ │ ├── MyGraph.java │ │ │ │ │ │ │ ├── MyGraphX.form │ │ │ │ │ │ │ ├── MyGraphX.java │ │ │ │ │ │ │ ├── Turn90Label.java │ │ │ │ │ │ │ ├── XAxis.java │ │ │ │ │ │ │ └── YAxis.java │ │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ ├── Property.~ava │ │ │ │ │ │ ├── PropertyLanguage.java │ │ │ │ │ │ ├── PropertyLanguage.~ava │ │ │ │ │ │ ├── VSMainWithPropertyManager.java │ │ │ │ │ │ ├── VSMainWithPropertyManager.~ava │ │ │ │ │ │ ├── VSPropertyManager.java │ │ │ │ │ │ └── VSPropertyManager.~ava │ │ │ │ ├── Oscilloscope_3_0 │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── FrameProperties.BAK │ │ │ │ │ │ ├── FrameProperties.java │ │ │ │ │ │ ├── FrameProperties.~ava │ │ │ │ │ │ ├── Kopie von OscPanel.javaXXXX │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MyGraph │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── manifest.mf │ │ │ │ │ │ ├── nbproject │ │ │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ │ └── project.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── MyGraph │ │ │ │ │ │ │ ├── BackGraphXY.java │ │ │ │ │ │ │ ├── FrameMain.form │ │ │ │ │ │ │ ├── FrameMain.java │ │ │ │ │ │ │ ├── GraphBackground.form │ │ │ │ │ │ │ ├── GraphBackground.java │ │ │ │ │ │ │ ├── GraphRenderer.java │ │ │ │ │ │ │ ├── MyGraph.form │ │ │ │ │ │ │ ├── MyGraph.java │ │ │ │ │ │ │ ├── MyGraphX.form │ │ │ │ │ │ │ ├── MyGraphX.java │ │ │ │ │ │ │ ├── Turn90Label.java │ │ │ │ │ │ │ ├── XAxis.java │ │ │ │ │ │ │ └── YAxis.java │ │ │ │ │ │ ├── OscPanel.java │ │ │ │ │ │ ├── OscPanel.~ava │ │ │ │ │ │ ├── Oscilloscope.java │ │ │ │ │ │ ├── Oscilloscope.~ava │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ ├── Properties.~ava │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ ├── Property.~ava │ │ │ │ │ │ ├── PropertyLanguage.java │ │ │ │ │ │ ├── PropertyLanguage.~ava │ │ │ │ │ │ ├── VSMainWithPropertyManager.java │ │ │ │ │ │ ├── VSMainWithPropertyManager.~ava │ │ │ │ │ │ ├── VSPropertyManager.java │ │ │ │ │ │ └── VSPropertyManager.~ava │ │ │ │ ├── Table │ │ │ │ │ ├── definition.def │ │ │ │ │ └── src │ │ │ │ │ │ ├── Clean.bat │ │ │ │ │ │ ├── List1D.~ava │ │ │ │ │ │ ├── Make.bat │ │ │ │ │ │ ├── MyTable.java │ │ │ │ │ │ ├── MyTable.~ava │ │ │ │ │ │ ├── Panel.java │ │ │ │ │ │ └── Panel.~ava │ │ │ │ ├── definition.def │ │ │ │ ├── icon32.png │ │ │ │ └── xAnalogAnzeige2 │ │ │ │ │ ├── Anzeige.vlogic │ │ │ │ │ ├── Xdefinition.def │ │ │ │ │ ├── definition.~ava │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.jpg │ │ │ ├── VMElement │ │ │ │ ├── Xdefinition.def │ │ │ │ └── src │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── VMElement.java │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── VMElementUniversal │ │ │ │ ├── Xdefinition.def │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ │ ├── build-impl.xml │ │ │ │ │ ├── genfiles.properties │ │ │ │ │ ├── private │ │ │ │ │ │ └── private.xml │ │ │ │ │ ├── project.properties │ │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ │ ├── CaptionDef.java │ │ │ │ │ ├── CaptionDef.~ava │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── Make.bat │ │ │ │ │ ├── VMElement.gif │ │ │ │ │ ├── VMElement.java │ │ │ │ │ ├── VMElement.~ava │ │ │ │ │ ├── VMPanel.java │ │ │ │ │ ├── VMPanel.~ava │ │ │ │ │ ├── vlogicFilter.java │ │ │ │ │ └── vlogicFilter.~ava │ │ │ ├── icon.png │ │ │ ├── sort.def │ │ │ └── xdefinition.def │ │ ├── definition.def │ │ ├── description_de.html │ │ ├── description_en.html │ │ ├── description_es.html │ │ ├── icon32.png │ │ ├── info.xml │ │ ├── jmr-fe-package01 │ │ │ ├── Actuadores │ │ │ │ ├── ASCENSOR │ │ │ │ │ ├── ASCENSOR.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Barrera │ │ │ │ │ ├── Barrera.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Cilindro_Neumatico │ │ │ │ │ ├── Cilindro_Neumatico.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Cinta_transportadora │ │ │ │ │ ├── Cinta_trasnportadora.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Estufa │ │ │ │ │ ├── Estufa.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Fotocelula │ │ │ │ │ ├── Fotocelula.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Lamp │ │ │ │ │ ├── Lamp.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.png │ │ │ │ ├── Motor │ │ │ │ │ ├── Motor.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Puerta1 │ │ │ │ │ ├── Puerta1.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ │ ├── Puerta_Corredera │ │ │ │ │ ├── Puerta_Corredera.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ │ ├── Relais │ │ │ │ │ ├── Relais.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.png │ │ │ │ ├── Semaforo_panel │ │ │ │ │ ├── Semaforo_panel.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Termometro │ │ │ │ │ ├── Termometro.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Ultrasonidos │ │ │ │ │ ├── Ultrasonidos.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Ventilador │ │ │ │ │ ├── Ventilador.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ ├── icon.gif │ │ │ │ │ └── icon.png │ │ │ │ ├── definition.def │ │ │ │ └── icon.png │ │ │ ├── Arduino │ │ │ │ ├── Arduino │ │ │ │ │ ├── Arduino.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Arduino_V │ │ │ │ │ ├── Arduino_V.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Blink_Panel │ │ │ │ │ ├── Blink_Panel.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Interface_Arduino │ │ │ │ │ ├── Interface_Arduino.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── description_de.html │ │ │ │ │ ├── description_en.html │ │ │ │ │ ├── description_es.html │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_de │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_en │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── PWM │ │ │ │ │ ├── PWM.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── description_de.html │ │ │ │ │ ├── description_en.html │ │ │ │ │ ├── description_es.html │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_de │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_en │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Servo │ │ │ │ │ ├── Servo.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── description_de.html │ │ │ │ │ ├── description_en.html │ │ │ │ │ ├── description_es.html │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_de │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_en │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── definition.def │ │ │ │ └── icon.png │ │ │ ├── Contador_decimal │ │ │ │ ├── Contador_decimal.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Date Demo │ │ │ │ ├── Date Demo.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.png │ │ │ ├── Desplaza Horizontal │ │ │ │ ├── Desplaza Horizontal.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Desplaza Vertical │ │ │ │ ├── Desplaza Vertical.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Display3 │ │ │ │ ├── Display3.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Interruptores │ │ │ │ ├── Interruptor1 │ │ │ │ │ ├── Interruptor1.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Interruptor2 │ │ │ │ │ ├── Interruptor2.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.gif │ │ │ │ ├── Interruptor3 │ │ │ │ │ ├── Interruptor3.vlogic │ │ │ │ │ ├── definition.def │ │ │ │ │ ├── doc.html │ │ │ │ │ ├── doc_en.html │ │ │ │ │ ├── doc_es.html │ │ │ │ │ ├── doc_es1.jpg │ │ │ │ │ └── icon.png │ │ │ │ ├── definition.def │ │ │ │ └── icon32.png │ │ │ ├── Macro_robot │ │ │ │ ├── Macro_robot.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Objeto movil │ │ │ │ ├── Objeto movil.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── PLC_V1 │ │ │ │ ├── PLC_V1.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── SVG-Logo2.svg │ │ │ ├── Slider │ │ │ │ ├── Slider.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es │ │ │ │ │ ├── index.1.jpg │ │ │ │ │ ├── index.2.jpg │ │ │ │ │ └── index.html │ │ │ │ └── icon32.png │ │ │ ├── Tastatur │ │ │ │ ├── DigitalCircuit.png │ │ │ │ ├── Tastatur.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.png │ │ │ ├── Trazador Analogico │ │ │ │ ├── Trazador Analogico.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── Trazador Digital │ │ │ │ ├── Trazador Digital.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es1.jpg │ │ │ │ └── icon.gif │ │ │ ├── contador_display │ │ │ │ ├── contador_display.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── description_de.html │ │ │ │ ├── description_en.html │ │ │ │ ├── description_es.html │ │ │ │ ├── doc.html │ │ │ │ ├── doc_de │ │ │ │ │ └── index.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_en │ │ │ │ │ └── index.html │ │ │ │ ├── doc_es.html │ │ │ │ ├── doc_es │ │ │ │ │ └── index.html │ │ │ │ └── icon.gif │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── icon.png │ │ │ └── info.xml │ │ ├── sort.def │ │ └── user-defined │ │ │ ├── ASCENSOR │ │ │ ├── ASCENSOR.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Analog Display Example │ │ │ ├── Analog Display Example.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── Barrera │ │ │ ├── Barrera.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Cilindro_Neumatico │ │ │ ├── Cilindro_Neumatico.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Cinta_trasnportadora │ │ │ ├── Cinta_trasnportadora.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── ClockDemo │ │ │ ├── ClockDemo.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── ClockDemo1 │ │ │ ├── ClockDemo1.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── Contador_decimal │ │ │ ├── Contador_decimal.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Date Demo │ │ │ ├── Date Demo.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── Desplaza Horizontal │ │ │ ├── Desplaza Horizontal.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Desplaza Vertical │ │ │ ├── Desplaza Vertical.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Display3 │ │ │ ├── Display3.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── FotocÚlula │ │ │ ├── FotocÚlula.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Fotocélula │ │ │ ├── Fotocélula.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Interruptores │ │ │ ├── Interruptor1 │ │ │ │ ├── Interruptor1.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Interruptor2 │ │ │ │ ├── Interruptor2.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.gif │ │ │ ├── Interruptor3 │ │ │ │ ├── Interruptor3.vlogic │ │ │ │ ├── definition.def │ │ │ │ ├── doc.html │ │ │ │ ├── doc_en.html │ │ │ │ ├── doc_es.html │ │ │ │ └── icon.png │ │ │ ├── definition.def │ │ │ └── icon32.png │ │ │ ├── Lamp │ │ │ ├── Lamp.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── Macro_robot │ │ │ ├── Macro_robot.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Motor │ │ │ ├── Motor.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Objeto m¾vil │ │ │ ├── Objeto m¾vil.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Objeto móvil │ │ │ ├── Objeto móvil.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── PLC_V1 │ │ │ ├── PLC_V1.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Puerta1 │ │ │ ├── Puerta1.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Puerta_Corredera │ │ │ ├── Puerta_Corredera.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Relais │ │ │ ├── Relais.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── SVG-Logo2.svg │ │ │ ├── Tastatur │ │ │ ├── DigitalCircuit.png │ │ │ ├── Tastatur.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── Termometro │ │ │ ├── Termometro.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Ultrasonidos │ │ │ ├── Ultrasonidos.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── Weather │ │ │ ├── Weather.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.png │ │ │ ├── contador_display │ │ │ ├── contador_display.vlogic │ │ │ ├── definition.def │ │ │ ├── doc.html │ │ │ ├── doc_en.html │ │ │ ├── doc_es.html │ │ │ └── icon.gif │ │ │ ├── icon.png │ │ │ └── xdefinition.def │ ├── MyGraph │ │ ├── BackGraphXY$1.class │ │ ├── BackGraphXY.class │ │ ├── FrameMain$1.class │ │ ├── FrameMain$2.class │ │ ├── FrameMain.class │ │ ├── GraphBackground$1.class │ │ ├── GraphBackground.class │ │ ├── GraphRenderer.class │ │ ├── MyGraph$1.class │ │ ├── MyGraph.class │ │ ├── MyGraphX$1.class │ │ ├── MyGraphX.class │ │ ├── Turn90Label.class │ │ ├── XAxis.class │ │ └── YAxis.class │ ├── MyParser │ │ ├── ._.DS_Store │ │ ├── OpenVariable.class │ │ ├── Parser.class │ │ ├── Parser.java │ │ └── Token.class │ ├── SVGViewer │ │ ├── ._.DS_Store │ │ ├── Main.class │ │ ├── NewJFrame$1.class │ │ ├── NewJFrame.class │ │ ├── SVGCircle.class │ │ ├── SVGEllipse.class │ │ ├── SVGLinearGradient.class │ │ ├── SVGLines.class │ │ ├── SVGManager.class │ │ ├── SVGObject.class │ │ ├── SVGPath.class │ │ ├── SVGPolygone.class │ │ └── SVGRect.class │ ├── UserElementsTemplate │ │ ├── CircuitElements │ │ │ ├── definition.def │ │ │ └── icon.png │ │ └── FrontElements │ │ │ ├── definition.def │ │ │ └── icon.png │ ├── VirtualMachines │ │ ├── Arduino-Firmata │ │ │ ├── Arduino_Robot1.vlogic │ │ │ ├── Arduino_Robot_recoger_pieza.vlogic │ │ │ ├── Blink1.vlogic │ │ │ ├── Blink2.vlogic │ │ │ ├── Combinational System.vlogic │ │ │ ├── Compare two channels.vlogic │ │ │ ├── Flip-Flop.vlogic │ │ │ ├── Flip-Flop_1.vlogic │ │ │ ├── Home_Alarm_System.vlogic │ │ │ ├── Home_Confort.vlogic │ │ │ ├── Main.vlogic │ │ │ ├── Output_Control_KEYBOARD_1.vlogic │ │ │ ├── PWM_SERVO.vlogic │ │ │ ├── PWM_Servo_Control_Mouse.vlogic │ │ │ ├── SERVO.vlogic │ │ │ ├── Test1.vlogic │ │ │ ├── Test2.vlogic │ │ │ ├── Two_Output_Control_KEYBOARD.vlogic │ │ │ ├── analog1.vlogic │ │ │ ├── comparator.vlogic │ │ │ ├── control open door.vlogic │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── digital_signal_trace.vlogic │ │ │ ├── door.vlogic │ │ │ ├── drinking_machine.vlogic │ │ │ ├── elevator.vlogic │ │ │ ├── generador impulsos_Block_library.vlogic │ │ │ ├── icon32.png │ │ │ ├── impulses generator.vlogic │ │ │ ├── info.xml │ │ │ ├── input_analog.vlogic │ │ │ ├── input_digital.vlogic │ │ │ ├── monostable.vlogic │ │ │ ├── output_digital.vlogic │ │ │ ├── project.myopenlab │ │ │ ├── scaling signal.vlogic │ │ │ ├── secuenciator 4 bits.vlogic │ │ │ ├── secuenciator decimal.vlogic │ │ │ ├── semaphore.vlogic │ │ │ ├── ten pulses counter.vlogic │ │ │ └── thermostat.vlogic │ │ ├── Espanol Arduino-Firmata │ │ │ ├── AND.vlogic │ │ │ ├── Arduino Datalogger1.vlogic │ │ │ ├── Arduino Datalogger1_bis.vlogic │ │ │ ├── Arduino Datalogger2.vlogic │ │ │ ├── Arduino_Robot1.vlogic │ │ │ ├── Arduino_Robot_recoger_pieza.vlogic │ │ │ ├── Blink1.vlogic │ │ │ ├── Blink2.vlogic │ │ │ ├── Blink3 Variable Frecuency.vlogic │ │ │ ├── Blink4_Block_libray_Element.vlogic │ │ │ ├── Blink5_Libary_Block_Panel.vlogic │ │ │ ├── Combinational System.vlogic │ │ │ ├── Compare two channels.vlogic │ │ │ ├── Home_Alarm_System.vlogic │ │ │ ├── Home_Confort.vlogic │ │ │ ├── Main.vlogic │ │ │ ├── PWM_SERVO.vlogic │ │ │ ├── PWM_Servo_Control_Mouse.vlogic │ │ │ ├── SERVO.vlogic │ │ │ ├── Test1.vlogic │ │ │ ├── Test2.vlogic │ │ │ ├── analog1.vlogic │ │ │ ├── ascensor.vlogic │ │ │ ├── bebidas.vlogic │ │ │ ├── biestable.vlogic │ │ │ ├── biestable_1.vlogic │ │ │ ├── comparator.vlogic │ │ │ ├── control open door.vlogic │ │ │ ├── control_1_salida_desde_teclado.vlogic │ │ │ ├── control_2_salidas_desde_teclado.vlogic │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── escalar_analogica.vlogic │ │ │ ├── generador impulsos_Block_library.vlogic │ │ │ ├── icon32.png │ │ │ ├── impulses generator.vlogic │ │ │ ├── info.xml │ │ │ ├── input_analog.vlogic │ │ │ ├── input_digital.vlogic │ │ │ ├── monoestable.vlogic │ │ │ ├── output_digital.vlogic │ │ │ ├── project.myopenlab │ │ │ ├── puerta.vlogic │ │ │ ├── scaling signal.vlogic │ │ │ ├── secuenciador 4 bits.vlogic │ │ │ ├── secuenciador decimal.vlogic │ │ │ ├── semaphore.vlogic │ │ │ ├── ten pulses counter.vlogic │ │ │ ├── thermostat.vlogic │ │ │ ├── trazador_se¦al_digital.vlogic │ │ │ └── trazador_se±al_digital.vlogic │ │ ├── Espanol Ejemplos │ │ │ ├── Circuitos Digitales │ │ │ │ ├── 7 segmentos.vlogic │ │ │ │ ├── Cod_Binario_Decimal.vlogic │ │ │ │ ├── Cod_Decimal_Binario.vlogic │ │ │ │ ├── Contador binario de 8 bits.vlogic │ │ │ │ ├── Doble contador BCD.vlogic │ │ │ │ ├── Doble contadro BCD con display.vlogic │ │ │ │ ├── RULETA.vlogic │ │ │ │ ├── circuito1.vlogic │ │ │ │ ├── circuito10.vlogic │ │ │ │ ├── circuito11.vlogic │ │ │ │ ├── circuito12.vlogic │ │ │ │ ├── circuito13.vlogic │ │ │ │ ├── circuito14.vlogic │ │ │ │ ├── circuito15.vlogic │ │ │ │ ├── circuito16.vlogic │ │ │ │ ├── circuito17.vlogic │ │ │ │ ├── circuito18.vlogic │ │ │ │ ├── circuito19.vlogic │ │ │ │ ├── circuito2.vlogic │ │ │ │ ├── circuito20.vlogic │ │ │ │ ├── circuito21.vlogic │ │ │ │ ├── circuito3.vlogic │ │ │ │ ├── circuito4.vlogic │ │ │ │ ├── circuito5.vlogic │ │ │ │ ├── circuito6.vlogic │ │ │ │ ├── circuito7.vlogic │ │ │ │ ├── circuito8.vlogic │ │ │ │ ├── circuito9.vlogic │ │ │ │ ├── contador 4 bits.vlogic │ │ │ │ ├── contador BCD 2 Digitos.vlogic │ │ │ │ ├── contador.vlogic │ │ │ │ ├── decodificador decimal.vlogic │ │ │ │ └── ejemplos_display_3_digitos.vlogic │ │ │ ├── Circuitos Electricos Basicos │ │ │ │ ├── Main.vlogic │ │ │ │ ├── circuito serie.vlogic │ │ │ │ ├── circuito serie_1.vlogic │ │ │ │ ├── circuito serie_2.vlogic │ │ │ │ ├── circuito_ paralelo1.vlogic │ │ │ │ ├── circuito_paralelo2.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Client.vlogic │ │ │ ├── Control de Aplicacion │ │ │ │ ├── Abort_App_JV_Example │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ │ └── cmdWrite_JV_Example │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ ├── Diagramas de Flujo │ │ │ │ ├── Compara variables.vlogic │ │ │ │ ├── Comparador M1.vlogic │ │ │ │ ├── Comparador M2.vlogic │ │ │ │ ├── Comparar.vlogic │ │ │ │ ├── Cßlculo iteractivo.vlogic │ │ │ │ ├── Demo Pocedimiento.vlogic │ │ │ │ ├── For_Next1.vlogic │ │ │ │ ├── While_Wend1.vlogic │ │ │ │ ├── While_Wend2.vlogic │ │ │ │ ├── acensor.vlogic │ │ │ │ ├── adivinar_numero.vlogic │ │ │ │ ├── alarma_Velleman.vlogic │ │ │ │ ├── ascensor.vlogic │ │ │ │ ├── bebidas.vlogic │ │ │ │ ├── calculo iteractivo.vlogic │ │ │ │ ├── comparacion_cadenas_texto.vlogic │ │ │ │ ├── contador_basico1.vlogic │ │ │ │ ├── contador_basico2.vlogic │ │ │ │ ├── contador_basico3.vlogic │ │ │ │ ├── ejecucion simultanea.vlogic │ │ │ │ ├── ejecuci¾n simultßnea.vlogic │ │ │ │ ├── ejecución simultánea.vlogic │ │ │ │ ├── gasolinera.vlogic │ │ │ │ ├── interaccion_variables.vlogic │ │ │ │ ├── intermitente.vlogic │ │ │ │ ├── par_impar.vlogic │ │ │ │ ├── parking.vlogic │ │ │ │ ├── positivo_negativo.vlogic │ │ │ │ ├── puerta.vlogic │ │ │ │ ├── puerta_casa.vlogic │ │ │ │ ├── semaforo_Velleman.vlogic │ │ │ │ ├── semaforo_flowchart.vlogic │ │ │ │ ├── sumar.vlogic │ │ │ │ ├── sumatorio.vlogic │ │ │ │ ├── termostato.vlogic │ │ │ │ └── vagoneta.vlogic │ │ │ ├── Elementos Panel de Texto JV │ │ │ │ └── Ejemplo_Panel_de_texto_JV │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ ├── Interface k8055 │ │ │ │ ├── AUDIO00007.wav │ │ │ │ ├── AUDIO00009.wav │ │ │ │ ├── Main.vlogic │ │ │ │ ├── Simulador k8055.vlogic │ │ │ │ ├── alarma domestica.vlogic │ │ │ │ ├── calefacci¾n.vlogic │ │ │ │ ├── calefacion.vlogic │ │ │ │ ├── confort_domestico.vlogic │ │ │ │ ├── dataloger1.vlogic │ │ │ │ ├── dataloger2.vlogic │ │ │ │ ├── generador_impulsos.vlogic │ │ │ │ ├── prensa.vlogic │ │ │ │ ├── project.myopenlab │ │ │ │ ├── test1_K8055.vlogic │ │ │ │ └── test2_K8055 Driver 1.1.vlogic │ │ │ ├── JavaScript │ │ │ │ ├── AND JavaSript.vlogic │ │ │ │ ├── JavaScript_ejemplo.vlogic │ │ │ │ └── Suma JavaSript.vlogic │ │ │ ├── PLC │ │ │ │ ├── PLC_Comparador.vlogic │ │ │ │ ├── PLC_Contador1.vlogic │ │ │ │ ├── PLC_Intermitente1.vlogic │ │ │ │ ├── PLC_Paro_Marcha.vlogic │ │ │ │ ├── PLC_generador _salida_analogica.vlogic │ │ │ │ ├── PLC_generador_n_impulsos.vlogic │ │ │ │ └── plc_comparador_1.vlogic │ │ │ ├── Robotica │ │ │ │ ├── Images │ │ │ │ │ ├── Poly.png │ │ │ │ │ ├── Rectangle.png │ │ │ │ │ └── circle.png │ │ │ │ ├── Main.vlogic │ │ │ │ ├── RobotTest2.vlogic │ │ │ │ ├── RobotTest3.vlogic │ │ │ │ ├── RobotTestA0.vlogic │ │ │ │ ├── RobotTestA1.vlogic │ │ │ │ ├── Test Robot V1.1.vlogic │ │ │ │ ├── aprendizaje.vlogic │ │ │ │ ├── girador.vlogic │ │ │ │ ├── guiado por sensor.vlogic │ │ │ │ ├── project.myopenlab │ │ │ │ ├── recoje pieza.vlogic │ │ │ │ ├── recorrido fijo.vlogic │ │ │ │ ├── seguimiento de tabla1.vlogic │ │ │ │ ├── seguimiento de tabla2.vlogic │ │ │ │ ├── situando objetos en el area del robot.vlogic │ │ │ │ ├── sub0.vlogic │ │ │ │ └── vaiven.vlogic │ │ │ ├── Server.vlogic │ │ │ ├── Varios │ │ │ │ ├── CONTADORES TEMPORIZADORES.vlogic │ │ │ │ ├── Carga de imagen.vlogic │ │ │ │ ├── Deslizador_Personalizable_JV.vlogic │ │ │ │ ├── Generador Funcion Grafica2.vlogic │ │ │ │ ├── Generador de Funcion y Tabla.vlogic │ │ │ │ ├── Generador.vlogic │ │ │ │ ├── calculador1.vlogic │ │ │ │ ├── calculadora.vlogic │ │ │ │ ├── calendario.vlogic │ │ │ │ ├── conversion_temperaturas.vlogic │ │ │ │ ├── domotica1.vlogic │ │ │ │ ├── ecuacion segundo grado.vlogic │ │ │ │ ├── ejecucion aplicacion.vlogic │ │ │ │ ├── ejecuta sonido1.vlogic │ │ │ │ ├── formato numeros.vlogic │ │ │ │ ├── funciones1.vlogic │ │ │ │ ├── generador impulsos.vlogic │ │ │ │ ├── generador numerico.vlogic │ │ │ │ ├── impulso retardo.vlogic │ │ │ │ ├── lee y muestra fichero.vlogic │ │ │ │ ├── libreria visualizacion salida.vlogic │ │ │ │ ├── longitud cadena.vlogic │ │ │ │ ├── matrices 2D.vlogic │ │ │ │ ├── operaciones matematicas.vlogic │ │ │ │ ├── osciloscopio 2 canales.vlogic │ │ │ │ ├── par_impar.vlogic │ │ │ │ ├── positivo_negativo.vlogic │ │ │ │ ├── project.myopenlab │ │ │ │ ├── representacion ecuacion.vlogic │ │ │ │ ├── resistencia.vlogic │ │ │ │ ├── salida de texto.vlogic │ │ │ │ ├── subcadenas.vlogic │ │ │ │ ├── suma_palabras.vlogic │ │ │ │ └── tratamiento imagenes1.vlogic │ │ │ ├── Vectores y Matrices │ │ │ │ ├── Conversion datos 1D.vlogic │ │ │ │ ├── datos tipo 1d.vlogic │ │ │ │ ├── escribir datos en una tabla.vlogic │ │ │ │ ├── generador de datos para tabla v1.vlogic │ │ │ │ ├── generador de datos para tabla v2.vlogic │ │ │ │ ├── producto de matrices.vlogic │ │ │ │ ├── project.myopenlab │ │ │ │ └── suma dos tablas 1D.vlogic │ │ │ ├── analogicos │ │ │ │ ├── Comparaciones.vlogic │ │ │ │ └── detector_maximo.vlogic │ │ │ ├── anidado de circuitos │ │ │ │ ├── anidado.vlogic │ │ │ │ ├── circuito1.vlogic │ │ │ │ └── circuito2.vlogic │ │ │ ├── automatismos │ │ │ │ ├── barrera.vlogic │ │ │ │ ├── cinta.vlogic │ │ │ │ ├── cinta_sensores.vlogic │ │ │ │ ├── control_barrera.vlogic │ │ │ │ ├── control_motor.vlogic │ │ │ │ ├── control_neumatico1.vlogic │ │ │ │ ├── deposito.vlogic │ │ │ │ ├── puerta.vlogic │ │ │ │ ├── semaforos.vlogic │ │ │ │ └── tren.vlogic │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── fisica │ │ │ │ ├── Movimiento_acelerado.vlogic │ │ │ │ ├── Movimiento_acelerado1.vlogic │ │ │ │ ├── carrera.vlogic │ │ │ │ ├── jugador_baloncesto.vlogic │ │ │ │ └── lanzamiento vertical.vlogic │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ ├── movimiento │ │ │ │ ├── circular.vlogic │ │ │ │ ├── posicionamiento_circular.vlogic │ │ │ │ ├── posicionamiento_horizontal.vlogic │ │ │ │ └── posicionamiento_vertical.vlogic │ │ │ ├── panel visualizacion │ │ │ │ └── contador 4 bits.vlogic │ │ │ ├── project.myopenlab │ │ │ └── subcircuitos │ │ │ │ ├── e1.vlogic │ │ │ │ └── subcircuito1.vlogic │ │ ├── Examples │ │ │ ├── 3 Channel Oscilloscope II.vlogic │ │ │ ├── 4 Digit example.vlogic │ │ │ ├── Addierer │ │ │ │ ├── 4BitVA.vlogic │ │ │ │ ├── Main.vlogic │ │ │ │ └── VA.vlogic │ │ │ ├── Analog Demo II.vlogic │ │ │ ├── Analog Demo.vlogic │ │ │ ├── Analog Demos │ │ │ │ └── Sound In Demo.vlogic │ │ │ ├── Android_Interface_Demo │ │ │ │ ├── APK │ │ │ │ │ └── AndroidInterface_MyOpenLab.apk │ │ │ │ ├── Main.vlogic │ │ │ │ ├── subvmFormat.gif │ │ │ │ └── subvmFormat.vlogic │ │ │ ├── Anlagensteuerungen │ │ │ │ ├── Bioreaktor.vlogic │ │ │ │ ├── info.txt │ │ │ │ └── project.myopenlab │ │ │ ├── Application Starter.vlogic │ │ │ ├── Application_Control │ │ │ │ ├── Abort_App_JV_Example │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ │ └── cmdWrite_JV_Example │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ ├── ArduinoSimpleInterface_JV │ │ │ │ ├── AvoidAutoReset.png │ │ │ │ ├── Main.vlogic │ │ │ │ ├── arduino_JV │ │ │ │ │ └── arduino_JV.ino │ │ │ │ └── project.myopenlab │ │ │ ├── Bitweise AND Demo.vlogic │ │ │ ├── Boolean │ │ │ │ ├── Bin2Dec Demo.vlogic │ │ │ │ ├── Dec2Bin Demo.vlogic │ │ │ │ ├── Gatter Demo.vlogic │ │ │ │ ├── Gatter Test.vlogic │ │ │ │ ├── Multiplexer_Demultiplexer_Demo.vlogic │ │ │ │ ├── RS FLIP FLOP IN NAND TEC.vlogic │ │ │ │ └── Userdefined Boolean Display.vlogic │ │ │ ├── Canvas Examples │ │ │ │ ├── DrawString Canvas Demo.vlogic │ │ │ │ ├── Ellipse Canvas Demo.vlogic │ │ │ │ ├── Image Canvas Demo.vlogic │ │ │ │ ├── Line Canvas Demo.vlogic │ │ │ │ ├── Points Canvas Demo.vlogic │ │ │ │ └── Rectangle Canvas Demo.vlogic │ │ │ ├── Client.vlogic │ │ │ ├── Console.vlogic │ │ │ ├── Counter und Sinus Demo.vlogic │ │ │ ├── Counter.vlogic │ │ │ ├── D-FlipFlop.vlogic │ │ │ ├── DCT Oscilloscope.vlogic │ │ │ ├── Decoratoren Demo.vlogic │ │ │ ├── Demo OSC NEW.vlogic │ │ │ ├── Demos_22_02_2007 │ │ │ │ ├── 3 Channel Oscilloscope II.vlogic │ │ │ │ ├── Beep Example.vlogic │ │ │ │ ├── Generator.vlogic │ │ │ │ ├── PID-Regler.vlogic │ │ │ │ └── counterUpDownDemo.vlogic │ │ │ ├── Firmata │ │ │ │ └── Main.vlogic │ │ │ ├── Flip-Flop Demos │ │ │ │ ├── Clocked RS-FFDemo.vlogic │ │ │ │ ├── Counter 4 Bit.vlogic │ │ │ │ ├── D Latch Demo.vlogic │ │ │ │ ├── D Master-Slave FF Demo.vlogic │ │ │ │ ├── FlipFlops Test.vlogic │ │ │ │ └── JK-Master-Slave FF Demo.vlogic │ │ │ ├── FlowChart │ │ │ │ ├── Decision with Boolean.vlogic │ │ │ │ ├── Decision with Double.vlogic │ │ │ │ ├── Decision with Strings.vlogic │ │ │ │ ├── Demo Procedure.vlogic │ │ │ │ ├── Demo SubRoutine.vlogic │ │ │ │ ├── For_Next.vlogic │ │ │ │ ├── Summ Test.vlogic │ │ │ │ ├── Variables_JV │ │ │ │ │ ├── SetterAndGetterExample.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ │ └── While_Wend.vlogic │ │ │ ├── Flowcharts demos │ │ │ │ ├── 1D_Array_example.vlogic │ │ │ │ ├── Blinker.vlogic │ │ │ │ ├── Boolean Demo1.vlogic │ │ │ │ ├── Eval Demo.vlogic │ │ │ │ ├── FlowChart Demo 1.vlogic │ │ │ │ ├── FlowChart String Demo.vlogic │ │ │ │ ├── Number Compare.vlogic │ │ │ │ ├── Simultane_Execution.vlogic │ │ │ │ ├── Variable with Image Demo.vlogic │ │ │ │ └── Variables Demo I.vlogic │ │ │ ├── Frames │ │ │ │ ├── Main.vlogic │ │ │ │ ├── frmGauge.vlogic │ │ │ │ ├── frmInfo.vlogic │ │ │ │ └── frmRegler.vlogic │ │ │ ├── Fuzzy Logic │ │ │ │ ├── Main.vlogic │ │ │ │ ├── frmScreenShot.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Gauges │ │ │ │ ├── Botón RojoOFF.png │ │ │ │ ├── Botón RojoON.png │ │ │ │ └── Gauges JV.vlogic │ │ │ ├── Graphs │ │ │ │ └── XY_Graphs_JV.vlogic │ │ │ ├── Hello World.vlogic │ │ │ ├── Image Processing Demos │ │ │ │ ├── AllEdges.csv │ │ │ │ ├── Convolution.vlogic │ │ │ │ ├── Image Processing Demo Brightnes.vlogic │ │ │ │ ├── Image Processing Demo Canny and Threshold Filter .vlogic │ │ │ │ ├── Image Processing Demo Grayscale.vlogic │ │ │ │ ├── Image Processing Demo Median 3x3 Filter .vlogic │ │ │ │ ├── Image Processing Demo Smooth.vlogic │ │ │ │ ├── Image Processing Demo Threshold.vlogic │ │ │ │ ├── Image Processing Demo.vlogic │ │ │ │ ├── MyOpenLab.png │ │ │ │ ├── Prewitt_hoz.csv │ │ │ │ ├── Prewitt_vert.csv │ │ │ │ ├── Sobel_hoz.csv │ │ │ │ ├── Sobel_vert.csv │ │ │ │ ├── highpass.csv │ │ │ │ └── sharp.csv │ │ │ ├── JScroll_JV_Example.vlogic │ │ │ ├── Javascript │ │ │ │ ├── DateTime_JS.vlogic │ │ │ │ ├── SignalGenerator.vlogic │ │ │ │ └── splitString.vlogic │ │ │ ├── KeyPanel │ │ │ │ └── KeyPanelDemo.vlogic │ │ │ ├── Math Graph.vlogic │ │ │ ├── Math Parser.vlogic │ │ │ ├── MouseCatch Demos │ │ │ │ ├── MouseCatch Demo2.vlogic │ │ │ │ └── Simple Paint.vlogic │ │ │ ├── Multiline_Text_Elements │ │ │ │ └── Panel_Test_Elements_Example_JV │ │ │ │ │ ├── Main.vlogic │ │ │ │ │ └── project.myopenlab │ │ │ ├── NewClock.vlogic │ │ │ ├── Numeric.vlogic │ │ │ ├── Oscilloscope 4 Channel.vlogic │ │ │ ├── Physics │ │ │ │ ├── Feder.vlogic │ │ │ │ ├── Pendulum.vlogic │ │ │ │ ├── Schiefer Wurf.vlogic │ │ │ │ ├── circuit_canon.vlogic │ │ │ │ └── circuit_timer.vlogic │ │ │ ├── Professional.vlogic │ │ │ ├── RGB LED Demo.vlogic │ │ │ ├── RS232 │ │ │ │ ├── Copy Bytes.vlogic │ │ │ │ ├── Generate CRC.vlogic │ │ │ │ ├── HEX Demo.vlogic │ │ │ │ ├── Modbus RTU Command Demo.vlogic │ │ │ │ ├── Modbus RTU Command.vlogic │ │ │ │ ├── RS232 Send Bytes.vlogic │ │ │ │ ├── RS232 Send String.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Random Example.vlogic │ │ │ ├── Random.vlogic │ │ │ ├── Raute.csv │ │ │ ├── Rechner Demo.vlogic │ │ │ ├── Relais.vlogic │ │ │ ├── Robotic │ │ │ │ ├── Images │ │ │ │ │ ├── Poly.png │ │ │ │ │ ├── Rectangle.png │ │ │ │ │ └── circle.png │ │ │ │ ├── RobotArm3D.vlogic │ │ │ │ ├── RobotDemo V-1.1.vlogic │ │ │ │ ├── RobotDemo.vlogic │ │ │ │ └── RobotDemoWithImages.vlogic │ │ │ ├── Server.vlogic │ │ │ ├── Simple DCT Exp.vlogic │ │ │ ├── Simple Oscilloscope.vlogic │ │ │ ├── Sound Demo.vlogic │ │ │ ├── Sound IN Demo.vlogic │ │ │ ├── Status Demo 2.vlogic │ │ │ ├── Status Demo.vlogic │ │ │ ├── String Length.vlogic │ │ │ ├── Tanks │ │ │ │ └── TankTest.vlogic │ │ │ ├── Taster Demo.vlogic │ │ │ ├── Test1.csv │ │ │ ├── Test2.csv │ │ │ ├── Testpoints │ │ │ │ └── Testpoint Demo.vlogic │ │ │ ├── UniversalMultiplexer │ │ │ │ └── UniversalMultiplexer_Demo.vlogic │ │ │ ├── VectorMatrix │ │ │ │ ├── Append To File.vlogic │ │ │ │ ├── Getter Setter.vlogic │ │ │ │ ├── Load File.vlogic │ │ │ │ ├── Matrix Addition.vlogic │ │ │ │ ├── Matrix Multiplication.vlogic │ │ │ │ ├── MemoryTable.vlogic │ │ │ │ ├── Save File.vlogic │ │ │ │ ├── Test2.csv │ │ │ │ ├── Vectors │ │ │ │ │ └── Vector Types Demo.vlogic │ │ │ │ ├── WetterDaten.txt │ │ │ │ ├── Writing Array.vlogic │ │ │ │ ├── converter.vlogic │ │ │ │ └── vasbeck.csv │ │ │ ├── Wave Player.vlogic │ │ │ ├── counter2.vlogic │ │ │ ├── definition.def │ │ │ ├── description_de.html │ │ │ ├── description_en.html │ │ │ ├── description_es.html │ │ │ ├── example Circuit Sim.vlogic │ │ │ ├── hello.v │ │ │ ├── icon32.png │ │ │ ├── info.xml │ │ │ ├── osc.png │ │ │ └── project.myopenlab │ │ ├── Raspberry PI │ │ │ ├── Test_ADS11X5_JV │ │ │ │ ├── Main.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Test_DI_GPIO_Element │ │ │ │ ├── Main.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Test_DO_GPIO_Element │ │ │ │ ├── Main.vlogic │ │ │ │ └── project.myopenlab │ │ │ ├── Test_GPIO_JV_Example │ │ │ │ └── GPIO_Main.vlogic │ │ │ └── Test_Temperature_RPI_Element │ │ │ │ ├── Main.vlogic │ │ │ │ └── project.myopenlab │ │ ├── SerialCOM_Elements_JV │ │ │ ├── COM_Serial_Modular_JV.vlogic │ │ │ ├── COM_Serial_Transaccion_JV.vlogic │ │ │ └── project.myopenlab │ │ └── project.myopenlab │ ├── VisualLogic │ │ ├── Basis.class │ │ ├── BasisPanel.class │ │ ├── Element.class │ │ ├── ElementActionEvent.class │ │ ├── ElementIF.class │ │ ├── ElementProperty.class │ │ ├── ExternalIF.class │ │ ├── FrameRunning.class │ │ ├── InitIF.class │ │ ├── MyOpenLabDriver.class │ │ ├── MyOpenLabDriverIF.class │ │ ├── MyOpenLabDriverOwnerIF.class │ │ ├── NewSerialDriverManager.class │ │ ├── PanelIF.class │ │ ├── PathPoint.class │ │ ├── VMObject$1.class │ │ ├── VMObject.class │ │ ├── VMObject.properties │ │ ├── VMObjectIF.class │ │ ├── VMObject_en_US.properties │ │ ├── VMObject_es_ES.properties │ │ ├── VSBasisIF.class │ │ ├── Version.class │ │ ├── _MyOpenLabDriverIF.class │ │ ├── _MyOpenLabDriverOwnerIF.class │ │ └── variables │ │ │ ├── ImageLoader.class │ │ │ ├── VS1DBoolean.class │ │ │ ├── VS1DByte.class │ │ │ ├── VS1DDouble.class │ │ │ ├── VS1DInteger.class │ │ │ ├── VS1DString.class │ │ │ ├── VS2DBoolean.class │ │ │ ├── VS2DByte.class │ │ │ ├── VS2DDouble.class │ │ │ ├── VS2DInteger.class │ │ │ ├── VS2DString.class │ │ │ ├── VSBoolean.class │ │ │ ├── VSByte.class │ │ │ ├── VSCanvas.class │ │ │ ├── VSColor.class │ │ │ ├── VSColorAdvanced.class │ │ │ ├── VSComboBox.class │ │ │ ├── VSDouble.class │ │ │ ├── VSFile.class │ │ │ ├── VSFlowInfo.class │ │ │ ├── VSFont.class │ │ │ ├── VSGroup.class │ │ │ ├── VSImage.class │ │ │ ├── VSImage24.class │ │ │ ├── VSInteger.class │ │ │ ├── VSObjRef.class │ │ │ ├── VSObject.class │ │ │ ├── VSProperties.class │ │ │ ├── VSPropertyDialog.class │ │ │ ├── VSString.class │ │ │ └── VSserialPort.class │ ├── XFolder.png │ ├── arrow.png │ ├── compTemplate │ │ ├── icon.gif │ │ └── src │ │ │ ├── Clean.bat │ │ │ └── Make.bat │ ├── config.txt │ ├── element.gif │ ├── element.png │ ├── empty.vlogic │ ├── eu │ │ └── hansolo │ │ │ └── steelseries │ │ │ ├── extras │ │ │ ├── AirCompass$1.class │ │ │ ├── AirCompass.class │ │ │ ├── AirCompassBeanInfo.class │ │ │ ├── Altimeter$1.class │ │ │ ├── Altimeter.class │ │ │ ├── AltimeterBeanInfo.class │ │ │ ├── Battery$1.class │ │ │ ├── Battery$2.class │ │ │ ├── Battery.class │ │ │ ├── BatteryBeanInfo.class │ │ │ ├── Clock$1.class │ │ │ ├── Clock.class │ │ │ ├── ClockBeanInfo.class │ │ │ ├── Compass$1.class │ │ │ ├── Compass.class │ │ │ ├── CompassBeanInfo.class │ │ │ ├── Horizon$1.class │ │ │ ├── Horizon.class │ │ │ ├── HorizonBeanInfo.class │ │ │ ├── Indicator$1.class │ │ │ ├── Indicator.class │ │ │ ├── IndicatorBeanInfo.class │ │ │ ├── Led$1.class │ │ │ ├── Led$2.class │ │ │ ├── Led.class │ │ │ ├── LedBeanInfo.class │ │ │ ├── Level$1.class │ │ │ ├── Level.class │ │ │ ├── LevelBeanInfo.class │ │ │ ├── LightBulb$1.class │ │ │ ├── LightBulb.class │ │ │ ├── LightBulbBeanInfo.class │ │ │ ├── Poi.class │ │ │ ├── PoiUtil.class │ │ │ ├── Radar$1.class │ │ │ ├── Radar.class │ │ │ ├── RadarBeanInfo.class │ │ │ ├── StopWatch$1.class │ │ │ ├── StopWatch.class │ │ │ ├── StopWatchBeanInfo.class │ │ │ ├── TrafficLight$1.class │ │ │ ├── TrafficLight.class │ │ │ ├── TrafficLight2$1.class │ │ │ ├── TrafficLight2.class │ │ │ ├── TrafficLight2BeanInfo.class │ │ │ ├── TrafficLightBeanInfo.class │ │ │ ├── WindDirection$1.class │ │ │ ├── WindDirection.class │ │ │ └── WindDirectionBeanInfo.class │ │ │ ├── gauges │ │ │ ├── AbstractGauge$1.class │ │ │ ├── AbstractGauge.class │ │ │ ├── AbstractLinear$1.class │ │ │ ├── AbstractLinear$2.class │ │ │ ├── AbstractLinear$3.class │ │ │ ├── AbstractLinear.class │ │ │ ├── AbstractLinearBargraph$1.class │ │ │ ├── AbstractLinearBargraph.class │ │ │ ├── AbstractRadial$1.class │ │ │ ├── AbstractRadial$2.class │ │ │ ├── AbstractRadial$3.class │ │ │ ├── AbstractRadial.class │ │ │ ├── AbstractRadialBargraph.class │ │ │ ├── DigitalRadial$1.class │ │ │ ├── DigitalRadial.class │ │ │ ├── DigitalRadialBeanInfo.class │ │ │ ├── DisplayCircular$1.class │ │ │ ├── DisplayCircular.class │ │ │ ├── DisplayCircularBeanInfo.class │ │ │ ├── DisplayMulti$1.class │ │ │ ├── DisplayMulti$2.class │ │ │ ├── DisplayMulti.class │ │ │ ├── DisplayMultiBeanInfo.class │ │ │ ├── DisplayRectangular.class │ │ │ ├── DisplayRectangularBeanInfo.class │ │ │ ├── DisplaySingle$1.class │ │ │ ├── DisplaySingle$2.class │ │ │ ├── DisplaySingle.class │ │ │ ├── DisplaySingleBeanInfo.class │ │ │ ├── Lcd.class │ │ │ ├── Linear$1.class │ │ │ ├── Linear.class │ │ │ ├── LinearBargraph$1.class │ │ │ ├── LinearBargraph.class │ │ │ ├── LinearBargraphBeanInfo.class │ │ │ ├── LinearBeanInfo.class │ │ │ ├── Radial$1.class │ │ │ ├── Radial.class │ │ │ ├── Radial1Square$1.class │ │ │ ├── Radial1Square.class │ │ │ ├── Radial1SquareBeanInfo.class │ │ │ ├── Radial1Vertical$1.class │ │ │ ├── Radial1Vertical.class │ │ │ ├── Radial1VerticalBeanInfo.class │ │ │ ├── Radial2Top$1.class │ │ │ ├── Radial2Top.class │ │ │ ├── Radial2TopBeanInfo.class │ │ │ ├── RadialBargraph$1.class │ │ │ ├── RadialBargraph.class │ │ │ ├── RadialBargraphBeanInfo.class │ │ │ ├── RadialBeanInfo.class │ │ │ ├── RadialCounter$1.class │ │ │ ├── RadialCounter.class │ │ │ ├── RadialCounterBeanInfo.class │ │ │ ├── SparkLine$1.class │ │ │ ├── SparkLine$2.class │ │ │ ├── SparkLine.class │ │ │ └── SparkLineBeanInfo.class │ │ │ └── tools │ │ │ ├── BackgroundColor.class │ │ │ ├── BackgroundImageFactory.class │ │ │ ├── BiLinearGradientPaint$BiLinearGradientPaintContext.class │ │ │ ├── BiLinearGradientPaint.class │ │ │ ├── BrushedMetalFilter.class │ │ │ ├── ColorDef.class │ │ │ ├── ConicalGradientPaint$ConicalGradientPaintContext.class │ │ │ ├── ConicalGradientPaint.class │ │ │ ├── ContourGradientPaint$ContourGradientPaintContext.class │ │ │ ├── ContourGradientPaint.class │ │ │ ├── CustomColorDef.class │ │ │ ├── CustomGaugeType.class │ │ │ ├── CustomLedColor.class │ │ │ ├── DataPoint.class │ │ │ ├── DesignSet$1.class │ │ │ ├── DesignSet$Builder.class │ │ │ ├── DesignSet.class │ │ │ ├── Direction.class │ │ │ ├── DisabledImageFactory.class │ │ │ ├── EllipticGradientPaint$OvalGradientContext.class │ │ │ ├── EllipticGradientPaint.class │ │ │ ├── ForegroundImageFactory$1.class │ │ │ ├── ForegroundImageFactory.class │ │ │ ├── ForegroundType.class │ │ │ ├── FrameDesign.class │ │ │ ├── FrameEffect.class │ │ │ ├── FrameImageFactory$1.class │ │ │ ├── FrameImageFactory.class │ │ │ ├── FrameType.class │ │ │ ├── GaugeType.class │ │ │ ├── GlowImageFactory$1.class │ │ │ ├── GlowImageFactory.class │ │ │ ├── GradientWrapper.class │ │ │ ├── Histogram.class │ │ │ ├── HsbColor$1.class │ │ │ ├── HsbColor$Builder.class │ │ │ ├── HsbColor.class │ │ │ ├── KnobImageFactory$1.class │ │ │ ├── KnobImageFactory.class │ │ │ ├── KnobStyle.class │ │ │ ├── KnobType.class │ │ │ ├── LcdColor.class │ │ │ ├── LcdImageFactory.class │ │ │ ├── LedColor.class │ │ │ ├── LedImageFactory.class │ │ │ ├── LedType.class │ │ │ ├── LinenFilter$1.class │ │ │ ├── LinenFilter.class │ │ │ ├── Model.class │ │ │ ├── NumberFormat.class │ │ │ ├── NumberSystem.class │ │ │ ├── Orientation.class │ │ │ ├── PointerImageFactory$1.class │ │ │ ├── PointerImageFactory.class │ │ │ ├── PointerType.class │ │ │ ├── PostPosition.class │ │ │ ├── Scaler.class │ │ │ ├── Section.class │ │ │ ├── Shadow.class │ │ │ ├── SmoothingFunction.class │ │ │ ├── SymbolImageFactory$1.class │ │ │ ├── SymbolImageFactory.class │ │ │ ├── SymbolType.class │ │ │ ├── ThresholdType.class │ │ │ ├── TicklabelOrientation.class │ │ │ ├── TickmarkImageFactory$1.class │ │ │ ├── TickmarkImageFactory.class │ │ │ ├── TickmarkType.class │ │ │ └── Util.class │ ├── lib │ │ └── swing-layout-1.0.jar │ ├── nope.html │ ├── org │ │ └── pushingpixels │ │ │ └── trident │ │ │ ├── Timeline$1.class │ │ │ ├── Timeline$Chain.class │ │ │ ├── Timeline$RepeatBehavior.class │ │ │ ├── Timeline$Setter.class │ │ │ ├── Timeline$TimelineState.class │ │ │ ├── Timeline$UISetter.class │ │ │ ├── Timeline.class │ │ │ ├── TimelineEngine$1.class │ │ │ ├── TimelineEngine$FullObjectID.class │ │ │ ├── TimelineEngine$TimelineCallbackThread.class │ │ │ ├── TimelineEngine$TimelineOperation.class │ │ │ ├── TimelineEngine$TimelineOperationKind.class │ │ │ ├── TimelineEngine$TridentAnimationThread.class │ │ │ ├── TimelineEngine.class │ │ │ ├── TimelinePropertyBuilder$AbstractFieldInfo.class │ │ │ ├── TimelinePropertyBuilder$DefaultPropertyGetter.class │ │ │ ├── TimelinePropertyBuilder$DefaultPropertySetter.class │ │ │ ├── TimelinePropertyBuilder$GenericFieldInfo.class │ │ │ ├── TimelinePropertyBuilder$GenericFieldInfoTo.class │ │ │ ├── TimelinePropertyBuilder$KeyFramesFieldInfo.class │ │ │ ├── TimelinePropertyBuilder$PropertyAccessor.class │ │ │ ├── TimelinePropertyBuilder$PropertyGetter.class │ │ │ ├── TimelinePropertyBuilder$PropertySetter.class │ │ │ ├── TimelinePropertyBuilder.class │ │ │ ├── TimelineRunnable.class │ │ │ ├── TimelineScenario$Chain.class │ │ │ ├── TimelineScenario$Parallel.class │ │ │ ├── TimelineScenario$RendezvousSequence.class │ │ │ ├── TimelineScenario$Sequence.class │ │ │ ├── TimelineScenario$TimelineScenarioActor.class │ │ │ ├── TimelineScenario$TimelineScenarioState.class │ │ │ ├── TimelineScenario.class │ │ │ ├── TridentConfig$DefaultPulseSource.class │ │ │ ├── TridentConfig$FixedRatePulseSource.class │ │ │ ├── TridentConfig$PulseSource.class │ │ │ ├── TridentConfig.class │ │ │ ├── UIToolkitHandler.class │ │ │ ├── callback │ │ │ ├── RunOnUIThread.class │ │ │ ├── TimelineCallback.class │ │ │ ├── TimelineCallbackAdapter.class │ │ │ ├── TimelineScenarioCallback.class │ │ │ └── UIThreadTimelineCallbackAdapter.class │ │ │ ├── ease │ │ │ ├── LengthItem.class │ │ │ ├── Linear.class │ │ │ ├── Sine.class │ │ │ ├── Spline$FloatPoint.class │ │ │ ├── Spline.class │ │ │ └── TimelineEase.class │ │ │ ├── interpolator │ │ │ ├── CorePropertyInterpolators$1.class │ │ │ ├── CorePropertyInterpolators$DoublePropertyInterpolator.class │ │ │ ├── CorePropertyInterpolators$FloatPropertyInterpolator.class │ │ │ ├── CorePropertyInterpolators$IntegerPropertyInterpolator.class │ │ │ ├── CorePropertyInterpolators$LongPropertyInterpolator.class │ │ │ ├── CorePropertyInterpolators.class │ │ │ ├── KeyFrames.class │ │ │ ├── KeyInterpolators.class │ │ │ ├── KeyTimes.class │ │ │ ├── KeyValues.class │ │ │ ├── PropertyInterpolator.class │ │ │ └── PropertyInterpolatorSource.class │ │ │ └── swing │ │ │ ├── AWTPropertyInterpolators$ColorInterpolator.class │ │ │ ├── AWTPropertyInterpolators$DimensionInterpolator.class │ │ │ ├── AWTPropertyInterpolators$PointInterpolator.class │ │ │ ├── AWTPropertyInterpolators$RectangleInterpolator.class │ │ │ ├── AWTPropertyInterpolators.class │ │ │ ├── SwingRepaintCallback.class │ │ │ ├── SwingRepaintTimeline.class │ │ │ ├── SwingToolkitHandler.class │ │ │ └── TimelineSwingWorker.class │ ├── start.html │ ├── std_lib_icon_32.png │ ├── tools │ │ ├── Beschriftung.class │ │ ├── Beschriftung2.class │ │ ├── BinAnzeige.class │ │ ├── BinAnzeige.java │ │ ├── BinSchalter.class │ │ ├── BinSchalter.java │ │ ├── CustomAnalogComp.class │ │ ├── CustomAnalogComp.java │ │ ├── CustomAnalogComp.~ava │ │ ├── CustomAnalogComp2.class │ │ ├── CustomAnalogComp2.java │ │ ├── CustomAnalogComp2.~ava │ │ ├── CustomAnalogComp_1_JV.java │ │ ├── CustomAnalogComp_2_JV.java │ │ ├── Expression$yyException.class │ │ ├── Expression$yyInput.class │ │ ├── Expression.class │ │ ├── Expression.java │ │ ├── Expression.jay │ │ ├── Expression.~ava │ │ ├── Gatter.class │ │ ├── Gatter.java │ │ ├── Gatter.~ava │ │ ├── Gatter2.class │ │ ├── Gatter2.java │ │ ├── Gatter2.~ava │ │ ├── Gatter3.class │ │ ├── Gatter3.java │ │ ├── Gatter3.~ava │ │ ├── GatterProperties$1.class │ │ ├── GatterProperties$2.class │ │ ├── GatterProperties$3.class │ │ ├── GatterProperties$4.class │ │ ├── GatterProperties$5.class │ │ ├── GatterProperties$6.class │ │ ├── GatterProperties.class │ │ ├── GatterProperties.java │ │ ├── JVSMain.class │ │ ├── JVSMain.java │ │ ├── JVSMain.~ava │ │ ├── MCUMainFlow$1.class │ │ ├── MCUMainFlow$2.class │ │ ├── MCUMainFlow$3.class │ │ ├── MCUMainFlow$4.class │ │ ├── MCUMainFlow$MCUMainFlow_Property.class │ │ ├── MCUMainFlow.class │ │ ├── MCUMainFlow.java │ │ ├── MCUMainFlow.~ava │ │ ├── MainFlow$1.class │ │ ├── MainFlow$2.class │ │ ├── MainFlow$3.class │ │ ├── MainFlow$4.class │ │ ├── MainFlow$5.class │ │ ├── MainFlow.class │ │ ├── MainFlow.java │ │ ├── MainFlow.~ava │ │ ├── Make.bat │ │ ├── OLD_CustomAnalogComp.javaX │ │ ├── Properties$1.class │ │ ├── Properties$2.class │ │ ├── Properties.class │ │ ├── Properties.java │ │ ├── Scanner.class │ │ ├── Scanner.java │ │ ├── Scanner.~ava │ │ ├── clear.bat │ │ ├── compileExpression-java.bat │ │ └── jay.jar │ └── update.txt │ ├── MyOpenLab.desktop │ ├── MyOpenLab.ico │ ├── Test │ ├── Main.vlogic │ └── project.myopenlab │ ├── images │ ├── Bar │ │ ├── Bild3.pspimage │ │ ├── bar0.gif │ │ ├── bar1.gif │ │ ├── bar2.gif │ │ ├── bar3.gif │ │ ├── bar4.gif │ │ ├── bar5.gif │ │ ├── bar6.gif │ │ ├── bar7.gif │ │ └── bar8.gif │ ├── Batterie.png │ ├── Button round .pspimage │ ├── Button round.png │ ├── Gifs │ │ └── animated-fire-image-0257.gif │ ├── IconoLauncher.png │ ├── IconoLauncher.xcf │ ├── Lamp │ │ ├── Lamp icon 32x32.pspimage │ │ ├── lampOff.png │ │ ├── lampOff.pspimage │ │ ├── lampOn.png │ │ └── lampOn.pspimage │ ├── MyOpenLab.ico │ ├── autobatt.png │ ├── copyR2018.png │ ├── gplv3_88x31.png │ ├── myopenlab_logo_Oficial.png │ ├── myopenlab_logo_Oficial_white.png │ ├── off.png │ ├── on.png │ ├── reset.png │ ├── splashJV.png │ ├── splashJV.xcf │ ├── takt.png │ ├── v Panel │ │ ├── V Panel with Scala.jpg │ │ ├── V Panel with Scala.pspimage │ │ ├── V Panel.pspimage │ │ ├── panel.png │ │ └── simple Panel.pspimage │ └── webPageJV.png │ ├── licenses │ ├── bsd.txt │ └── lgpl.txt │ ├── myopenlab.jar │ ├── myopenlab_lib │ ├── jaxb-api-2.4.0-b180830.0359.jar │ ├── json-20230227.jar │ ├── jssc-2.9.2.jar │ ├── rhino-1.7.14.jar │ ├── rhino-engine-1.7.14.jar │ └── swing-layout-1.0.4.jar │ ├── projectD │ ├── Main.vlogic │ └── project.myopenlab │ ├── start_Windows_64.bat │ ├── start_Windows_64_with JDK.bat │ ├── start_linux_armhf │ ├── start_linux_deb_64 │ ├── start_linux_suse_64 │ └── start_macosx ├── README.md └── src ├── Assets ├── Bilder │ ├── 16x16 │ │ ├── Legende16.GIF │ │ ├── Text.png │ │ ├── applications-internet.png │ │ ├── auge.png │ │ ├── book.gif │ │ ├── book.png │ │ ├── document-new.png │ │ ├── document-new_Java_Element.png │ │ ├── document-new_VM.png │ │ ├── document-print.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-undo.png │ │ ├── elementWindow.png │ │ ├── folder16x16.png │ │ ├── folder16x16_project.png │ │ ├── icon.png │ │ ├── legenge16.png │ │ ├── page_java.gif │ │ ├── preferences-desktop-locale.png │ │ ├── preferences-desktop.png │ │ ├── process-stop.png │ │ ├── projectExecutable16x16.png │ │ ├── publish.gif │ │ ├── save.png │ │ ├── save16.png │ │ ├── storage.png │ │ ├── system-log-out.png │ │ ├── system-search.png │ │ ├── system-software-update.png │ │ ├── text-x-script.png │ │ ├── unlock.png │ │ ├── utilities-terminal.png │ │ └── window-new.png │ ├── Check.pspimage │ ├── Cross.pspimage │ ├── Cross9x9.png │ ├── ElementImage.png │ ├── Step16.JPG │ ├── Step16.PNG │ ├── Step24.JPG │ ├── Step24.PNG │ ├── add_package.png │ ├── application_osx_terminal.png │ ├── applications-internet.png │ ├── arrow_black_left.png │ ├── arrow_black_right.png │ ├── arrow_refresh.png │ ├── box_front_open.png │ ├── de.png │ ├── document-new.png │ ├── document-new_VM.png │ ├── document-open.png │ ├── document_properties.png │ ├── edit-redo.png │ ├── edit-undo.png │ ├── es.png │ ├── file_save_as.png │ ├── gif │ │ ├── Check.gif │ │ ├── Cross.gif │ │ ├── Cross9x9.gif │ │ ├── Information16.gif │ │ ├── Information24.gif │ │ ├── Kopie von Check.gif │ │ ├── Legende.GIF │ │ ├── Resume.GIF │ │ ├── Resume16.GIF │ │ ├── about16.gif │ │ ├── about24.gif │ │ ├── ajax-loader.gif │ │ ├── back16.gif │ │ ├── blast16.gif │ │ ├── blast24.gif │ │ ├── bold16.gif │ │ ├── bold24.gif │ │ ├── cascadeWindows16.gif │ │ ├── cascadeWindows24.gif │ │ ├── close16.gif │ │ ├── close24.gif │ │ ├── closeAllWindows16.gif │ │ ├── closeAllWindows24.gif │ │ ├── color16.gif │ │ ├── color24.gif │ │ ├── compile.gif │ │ ├── compile16.gif │ │ ├── copy16.gif │ │ ├── copy24.gif │ │ ├── cut16.gif │ │ ├── cut24.gif │ │ ├── delete16.gif │ │ ├── delete24.gif │ │ ├── emptyIcon16.gif │ │ ├── emptyIcon24.gif │ │ ├── exit16.gif │ │ ├── exit24.gif │ │ ├── export16.gif │ │ ├── export24.gif │ │ ├── fastForward16.gif │ │ ├── fastForward24.gif │ │ ├── find16.gif │ │ ├── find24.gif │ │ ├── font16.gif │ │ ├── font24.gif │ │ ├── forward16.gif │ │ ├── graphBoolean.gif │ │ ├── graphBoolean16x16.gif │ │ ├── graphDouble.gif │ │ ├── graphDouble16x16.gif │ │ ├── hammer16.gif │ │ ├── hammer24.gif │ │ ├── help16.gif │ │ ├── help24.gif │ │ ├── home16.gif │ │ ├── import16.gif │ │ ├── import24.gif │ │ ├── italic16.gif │ │ ├── italic24.gif │ │ ├── lightning16.gif │ │ ├── lightning24.gif │ │ ├── mask16.gif │ │ ├── mask24.gif │ │ ├── netBeans.gif │ │ ├── new16.gif │ │ ├── new24.gif │ │ ├── open16.gif │ │ ├── open24.gif │ │ ├── open24Project.gif │ │ ├── open24VM.gif │ │ ├── paste16.gif │ │ ├── paste24.gif │ │ ├── pause16.gif │ │ ├── pause24.gif │ │ ├── play16.gif │ │ ├── play24.gif │ │ ├── playX24.gif │ │ ├── print16.gif │ │ ├── print24.gif │ │ ├── properties16.gif │ │ ├── properties24.gif │ │ ├── redo16.gif │ │ ├── redo24.gif │ │ ├── reverse16.gif │ │ ├── reverse24.gif │ │ ├── rewind16.gif │ │ ├── rewind24.gif │ │ ├── save16.gif │ │ ├── save24.gif │ │ ├── saveAs16.gif │ │ ├── saveAsJPG16.GIF │ │ ├── stop16.gif │ │ ├── stop24.gif │ │ ├── tileHorizontal16.gif │ │ ├── tileHorizontal24.gif │ │ ├── tileVertical16.gif │ │ ├── tileVertical24.gif │ │ ├── underline16.gif │ │ ├── underline24.gif │ │ ├── undo16.gif │ │ ├── undo24.gif │ │ ├── up16.gif │ │ ├── zip16.gif │ │ ├── zoom1_124.GIF │ │ ├── zoomIn16.gif │ │ ├── zoomIn24.gif │ │ ├── zoomOut16.gif │ │ └── zoomOut24.gif │ ├── gplv3-88x31.png │ ├── icon.png │ ├── icon_16.png │ ├── icon_2.png │ ├── icon_32.png │ ├── icon_64.png │ ├── information.png │ ├── isProject.png │ ├── legend.png │ ├── lgplv3-88x31.png │ ├── logoUcatolica.jpg │ ├── logoUcatolica.png │ ├── myopenlab_logo_2016.png │ ├── myopenlab_logo_Oficial.png │ ├── notAProject.png │ ├── package.png │ ├── preferences-desktop-locale.png │ ├── preferences-desktop.png │ ├── redo.png │ ├── save.png │ ├── save16.png │ ├── separator.png │ ├── startX.png │ ├── storage.png │ ├── storage24x24.png │ ├── testPointWhite.png │ ├── testpoint.PNG │ ├── undo.png │ ├── us.png │ ├── utilities-terminal.png │ ├── variables.png │ ├── variables16.png │ └── view-refresh.png ├── legend │ ├── Dateien │ │ ├── filelist.xml │ │ ├── image001.png │ │ └── image003.jpg │ ├── index.1.GIF │ ├── index.17.GIF │ ├── index.18.GIF │ ├── index.19.GIF │ ├── index.20.GIF │ ├── index.21.GIF │ ├── index.22.GIF │ ├── index.23.GIF │ ├── index.24.GIF │ ├── index.25.GIF │ ├── index.26.GIF │ ├── index.27.GIF │ ├── index.28.GIF │ ├── index.29.GIF │ ├── index.30.GIF │ ├── index.31.GIF │ ├── index.32.GIF │ ├── types_de.htm │ ├── types_en.htm │ └── types_es.htm └── resources │ └── mol_custom.xml ├── BasisStatus ├── StatusAddElement.java ├── StatusAddWire.java ├── StatusBasisIF.java ├── StatusEditPath.java ├── StatusEditPathAddMode.java ├── StatusEditPathEditMode.java ├── StatusEditPath_ADD_CurveTo.java ├── StatusGummiBand.java ├── StatusGummiBandX.java ├── StatusGummiBandXBackIF.java ├── StatusIdle.java ├── StatusIdle.properties ├── StatusIdle_en_US.properties ├── StatusIdle_es_ES.properties ├── StatusLineHoritontal.java ├── StatusLineVertikal.java ├── StatusMoveElements.java ├── StatusNOP.java ├── StatusNone.java ├── StatusResizeBasis.java ├── StatusResizeElement.java ├── StatusRun.java ├── frmElementInfo.form ├── frmElementInfo.java ├── frmElementInfo.properties ├── frmElementInfo_en_US.properties └── frmElementInfo_es_ES.properties ├── CodeEditor ├── DialogSearch.form ├── DialogSearch.java ├── DialogSearch.properties ├── DialogSearch_en_US.properties ├── DialogSearch_es_ES.properties ├── ExpandingArray.java ├── JavaSyntaxDocument.java ├── MyEditorPane.java ├── PanelEditor.java ├── PanelEditor.properties ├── PanelEditor_en_US.properties ├── PanelEditor_es_ES.properties ├── Scanner.java ├── StatusIdle.properties ├── StatusIdle_en_US.properties ├── StatusIdle_es_ES.properties ├── frmCodeEditor.form ├── frmCodeEditor.java ├── frmCodeEditor.properties ├── frmCodeEditor_en_US.properties ├── frmCodeEditor_es_ES.properties ├── frmDefinitonDefEditor.form ├── frmDefinitonDefEditor.java ├── frmDefinitonDefEditor.properties ├── frmDefinitonDefEditor_en_US.properties ├── frmDefinitonDefEditor_es_ES.properties ├── frmElementInfo.properties ├── frmElementInfo_en_US.properties └── frmElementInfo_es_ES.properties ├── CreateNewGroup ├── DialogCreateNewGroup.form ├── DialogCreateNewGroup.java ├── Dialog_create_new_group.properties ├── Dialog_create_new_group_en_US.properties ├── Dialog_create_new_group_es_ES.properties ├── ImageComponent.java ├── SummaryCart.java └── std_lib_icon_32.png ├── CustomColorPicker ├── Bild1.gif ├── ColorPanel.form ├── ColorPanel.java ├── CustomColorPicker.form ├── CustomColorPicker.java ├── CustomColorPicker.properties ├── CustomColorPicker_en_US.properties ├── CustomColorPicker_es_ES.properties ├── RoundGradientPaint.java ├── gitter.gif └── rasterSelection.png ├── MyGraph ├── BackGraphXY.java ├── FrameMain.form ├── FrameMain.java ├── GraphBackground.form ├── GraphBackground.java ├── GraphRenderer.java ├── MyGraph.form ├── MyGraph.java ├── MyGraphX.form ├── MyGraphX.java ├── Turn90Label.java ├── XAxis.java └── YAxis.java ├── MyParser ├── Expression.java ├── Keywords.java ├── OpenVariable.java ├── Parser.BAK ├── Parser.java ├── VerilogParser.java └── functions.h ├── Peditor ├── BasisProperty.java ├── DialogPropertiesChoice.form ├── DialogPropertiesChoice.java ├── PropertyEditor.form ├── PropertyEditor.java ├── PropertyEditor.properties ├── PropertyEditorItem.java ├── PropertyEditor_en_US.properties └── PropertyEditor_es_ES.properties ├── SimpleFileSystem ├── FileSystemInput.java ├── FileSystemOutput.java ├── SFileDescriptor.java └── Test.java ├── SimulatorSocket ├── Client.java ├── FrameMain.form ├── FrameMain.java ├── MyOpenLabOwnerIF.java └── Server.java ├── VisualLogic ├── Basis.java ├── BasisPanel.java ├── ColorRenderer.java ├── ColoredListCell.java ├── CommandIF.java ├── DFProperties.java ├── DataEntry.java ├── DataHistory.java ├── Draht.java ├── DriverInfo.java ├── DriverManager.java ├── DummyElement.java ├── Element.java ├── ElementActionEvent.java ├── ElementIF.java ├── ElementPaletteIF.java ├── ElementProperty.java ├── ElementPropertyX.java ├── ExtensionFileFilter.java ├── ExternalIF.java ├── FontChooser.java ├── JPin.java ├── JavaFileView.java ├── Line.java ├── LineInfo.java ├── Loader.java ├── MyImage.java ├── MyMenuItem.java ├── MyOpenLabDriverIF.java ├── MyOpenLabDriverOwnerIF.java ├── NOI18N │ ├── Basic.properties │ ├── Basic_en_US.properties │ ├── Basic_es_ES.properties │ ├── DialogAddEditvariable.properties │ ├── DialogAddEditvariable_en_US.properties │ ├── DialogAddEditvariable_es_ES.properties │ ├── DialogDistributionAssistent.properties │ ├── DialogDistributionAssistent_en_US.properties │ ├── DialogDistributionAssistent_es_ES.properties │ ├── DialogFontChooser.properties │ ├── DialogFontChooser_en_US.properties │ ├── DialogFontChooser_es_ES.properties │ ├── DialogLanguage.properties │ ├── DialogLanguage_en_US.properties │ ├── DialogLanguage_es_ES.properties │ ├── DialogNewJavaComponentAssistent.properties │ ├── DialogNewJavaComponentAssistent_en_US.properties │ ├── DialogNewJavaComponentAssistent_es_ES.properties │ ├── DialogNewProject.properties │ ├── DialogNewProject_en_US.properties │ ├── DialogNewProject_es_ES.properties │ ├── DialogPassword.properties │ ├── DialogPassword_en_US.properties │ ├── DialogPassword_es_ES.properties │ ├── DialogProjectProperties.properties │ ├── DialogProjectProperties_en_US.properties │ ├── DialogProjectProperties_es_ES.properties │ ├── DialogRename.properties │ ├── DialogRename_en_US.properties │ ├── DialogRename_es_ES.properties │ ├── DialogSaveAsModul.properties │ ├── DialogSaveAsModul_en_US.properties │ ├── DialogSaveAsModul_es_ES.properties │ ├── DialogSubVMAssistent.properties │ ├── DialogSubVMAssistent_en_US.properties │ ├── DialogSubVMAssistent_es_ES.properties │ ├── DialogUpdate.properties │ ├── DialogUpdate_en_US.properties │ ├── DialogUpdate_es_ES.properties │ ├── DialogVMName.properties │ ├── DialogVMName_en_US.properties │ ├── DialogVMName_es_ES.properties │ ├── DialogVariableWatcher.properties │ ├── DialogVariableWatcher_en_US.properties │ ├── DialogVariableWatcher_es_ES.properties │ ├── DialogVariables.properties │ ├── DialogVariables_en_US.properties │ ├── DialogVariables_es_ES.properties │ ├── ElementPalette.properties │ ├── ElementPalette_en_US.properties │ ├── ElementPalette_es_ES.properties │ ├── FrameBooleanGraph.properties │ ├── FrameBooleanGraph_en_US.properties │ ├── FrameBooleanGraph_es_ES.properties │ ├── FrameCircuit.properties │ ├── FrameCircuit_en_US.properties │ ├── FrameCircuit_es_ES.properties │ ├── FrameConsoleOutput.properties │ ├── FrameConsoleOutput_en_US.properties │ ├── FrameConsoleOutput_es_ES.properties │ ├── FrameDoc.properties │ ├── FrameDoc_en_US.properties │ ├── FrameDoc_es_ES.properties │ ├── FrameDoubleGraph.properties │ ├── FrameDoubleGraph_en_US.properties │ ├── FrameDoubleGraph_es_ES.properties │ ├── FrameErrorWarnings.properties │ ├── FrameErrorWarnings_en_US.properties │ ├── FrameErrorWarnings_es_ES.properties │ ├── FrameInfo.properties │ ├── FrameInfo_en_US.properties │ ├── FrameInfo_es_ES.properties │ ├── FrmTestpoints.properties │ ├── FrmTestpoints_en_US.properties │ ├── FrmTestpoints_es_ES.properties │ ├── Messages.properties │ ├── Messages_en_US.properties │ ├── Messages_es_ES.properties │ ├── PanelEditor_en_US.properties │ ├── PanelEditor_es_ES.properties │ ├── VMObject.properties │ ├── VMObject_en_US.properties │ ├── VMObject_es_ES.properties │ ├── VMProperties.properties │ ├── VMProperties_en_US.properties │ ├── VMProperties_es_ES.properties │ ├── frmDTLengend.properties │ ├── frmDTLengend_en_US.properties │ ├── frmDTLengend_es_ES.properties │ ├── frmOptions.properties │ ├── frmOptions_en_US.properties │ └── frmOptions_es_ES.properties ├── NewJavaCompSettings.java ├── NewSerialDriverManager.java ├── OnlyDirectoryFilter.java ├── PanelIF.java ├── PathPoint.java ├── PinIF.java ├── PinsSettings.java ├── PinsSettingsItem.java ├── PolyPoint.java ├── ProjectProperties.java ├── SearchElement.java ├── SearchFoundItem.java ├── Settings.java ├── Shape.java ├── SimpleFilter.java ├── SubElement.java ├── Tools.java ├── Transparency.java ├── VMEditorPanelIF.java ├── VMObject.java ├── VMObjectIF.java ├── VSBasisIF.java ├── VSDataType.java ├── Version.java ├── VisualObject.java ├── VlogicFilter.java ├── Wrapper.java ├── XMLSerializer.java ├── gui │ ├── DialogAddEditvariable.java │ ├── DialogDistributionAssistent.java │ ├── DialogElementSearchAssistent.java │ ├── DialogFontChooser.java │ ├── DialogLanguage.java │ ├── DialogLicence.java │ ├── DialogLupe.java │ ├── DialogNewJavaComponentAssistent.java │ ├── DialogNewProject.java │ ├── DialogOptions.java │ ├── DialogPassword.java │ ├── DialogProjectProperties.java │ ├── DialogRename.java │ ├── DialogSaveAsModul.java │ ├── DialogSubVMAssistent.java │ ├── DialogTranslateForm.java │ ├── DialogUpdate.java │ ├── DialogUserdefinedElementsHome.java │ ├── DialogVMName.java │ ├── DialogVariableWatcher.java │ ├── DialogVariables.java │ ├── DialogWait.java │ ├── ElementPalette.java │ ├── FrameBooleanGraph.java │ ├── FrameCode.java │ ├── FrameConsoleOutput.java │ ├── FrameDoc.java │ ├── FrameDoubleGraph.java │ ├── FrameErrorWarnings.java │ ├── FrameImageViewer.java │ ├── FrameInfo.java │ ├── FrameMain.java │ ├── FrameRunning.java │ ├── FrmTestpoints.java │ ├── PanelDokumentation.java │ ├── PanelImage.java │ ├── SelectionPane.java │ ├── SubDialog.java │ ├── VMEditorPanel.java │ ├── VMProperties.java │ └── frmDTLengend.java └── variables │ ├── VS1DBoolean.java │ ├── VS1DByte.java │ ├── VS1DDouble.java │ ├── VS1DInteger.java │ ├── VS1DString.java │ ├── VS2DBoolean.java │ ├── VS2DByte.java │ ├── VS2DDouble.java │ ├── VS2DInteger.java │ ├── VS2DString.java │ ├── VSBoolean.java │ ├── VSByte.java │ ├── VSCanvas.java │ ├── VSColor.java │ ├── VSColorAdvanced.java │ ├── VSComboBox.java │ ├── VSDouble.java │ ├── VSFile.java │ ├── VSFlowInfo.java │ ├── VSFont.java │ ├── VSGroup.java │ ├── VSImage.java │ ├── VSImage24.java │ ├── VSInteger.java │ ├── VSObjRef.java │ ├── VSObject.java │ ├── VSProperties.java │ ├── VSPropertyDialog.java │ ├── VSString.java │ └── VSserialPort.java ├── de └── myopenlab │ └── update │ ├── DeletePackages.java │ ├── IniFile.java │ ├── InstallPackages.java │ ├── MainFrame.properties │ ├── MainFrame_en_US.properties │ ├── MainFrame_es_ES.properties │ ├── MyOpenLabRow.java │ ├── MyTableModel.java │ ├── MyTableRow.java │ ├── TestItem.java │ ├── Tools2.java │ ├── UnzipFiles.java │ ├── frmUpdate.form │ └── frmUpdate.java ├── images ├── Bar │ ├── Bild3.pspimage │ ├── bar0.gif │ ├── bar1.gif │ ├── bar2.gif │ ├── bar3.gif │ ├── bar4.gif │ ├── bar5.gif │ ├── bar6.gif │ ├── bar7.gif │ └── bar8.gif ├── Batterie.png ├── Button round .pspimage ├── Button round.png ├── Gifs │ └── animated-fire-image-0257.gif ├── IconoLauncher.png ├── IconoLauncher.xcf ├── Lamp │ ├── Lamp icon 32x32.pspimage │ ├── lampOff.png │ ├── lampOff.pspimage │ ├── lampOn.png │ └── lampOn.pspimage ├── MyOpenLab.ico ├── autobatt.png ├── copyR2018.png ├── gplv3_88x31.png ├── myopenlab_logo_Oficial.png ├── myopenlab_logo_Oficial_white.png ├── off.png ├── on.png ├── reset.png ├── splashJV.png ├── splashJV.xcf ├── takt.png ├── v Panel │ ├── V Panel with Scala.jpg │ ├── V Panel with Scala.pspimage │ ├── V Panel.pspimage │ ├── panel.png │ └── simple Panel.pspimage └── webPageJV.png ├── lib ├── linux │ ├── libjSSC-2.8_armhf.so │ ├── libjSSC-2.8_armsf.so │ ├── libjSSC-2.8_x86.so │ └── libjSSC-2.8_x86_64.so ├── mac_os_x │ ├── libjSSC-2.8_ppc.jnilib │ ├── libjSSC-2.8_ppc64.jnilib │ ├── libjSSC-2.8_x86.jnilib │ └── libjSSC-2.8_x86_64.jnilib └── windows │ ├── jSSC-2.8_x86.dll │ └── jSSC-2.8_x86_64.dll ├── license.txt ├── licenses ├── bsd.txt └── lgpl.txt ├── projectfolder ├── FrameMain.form ├── FrameMain.java ├── MyNode.java ├── ProjectPalette.form ├── ProjectPalette.java ├── ProjectPalette.properties ├── ProjectPaletteIF.java ├── ProjectPalette_en_US.properties ├── ProjectPalette_es_ES.properties ├── Test.jpg ├── execfolder.png ├── folder-open.png ├── folder.png ├── image-x-generic.png ├── oldexecfolder.png ├── package-x-generic.png ├── page_deny.gif ├── projectCollapsed.png ├── projectExpanded.png ├── text-html.png ├── text-x-script.png └── user-home.png └── tools ├── BinAnzeige.java ├── BinSchalter.java ├── CustomAnalogComp_1_JV.java ├── CustomAnalogComp_2_JV.java ├── Expression.java ├── Expression.jay ├── Gatter.java ├── Gatter2.java ├── Gatter3.java ├── GatterProperties.java ├── JVSMain.java ├── MCUMainFlow.java ├── MainFlow.java ├── OLD_CustomAnalogComp.javaX ├── Properties.java ├── Scanner.java └── ZipFiles.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | /home/ssarkar/Documents/Projects/Java/Eclipse/MyOpenLab/src/license.txt -------------------------------------------------------------------------------- /MyOpenLab.AppDir/.DirIcon: -------------------------------------------------------------------------------- 1 | myopenlab.png -------------------------------------------------------------------------------- /MyOpenLab.AppDir/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/AppRun -------------------------------------------------------------------------------- /MyOpenLab.AppDir/MyOpenLab.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/MyOpenLab.desktop -------------------------------------------------------------------------------- /MyOpenLab.AppDir/myopenlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/myopenlab.png -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/conf/net.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/conf/net.properties -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/conf/sound.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/conf/sound.properties -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.compiler/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.compiler/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.compiler/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.datatransfer/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.datatransfer/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.datatransfer/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.desktop/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.desktop/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.desktop/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.logging/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.logging/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.logging/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.prefs/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.prefs/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.prefs/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.scripting/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.scripting/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.scripting/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.xml/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | ../java.base/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.xml/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | ../java.base/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.xml/LICENSE: -------------------------------------------------------------------------------- 1 | ../java.base/LICENSE -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/legal/java.xml/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/legal/java.xml/dom.md -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/classlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/classlist -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/jexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/jexec -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/jrt-fs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/jrt-fs.jar -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/jspawnhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/jspawnhelper -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/jvm.cfg: -------------------------------------------------------------------------------- 1 | -server KNOWN 2 | -client IGNORE 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libawt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libawt.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libawt_xawt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libawt_xawt.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libfontmanager.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libfontmanager.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjava.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjava.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjavajpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjavajpeg.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjawt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjawt.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjimage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjimage.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjli.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjli.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjsig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjsig.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libjsound.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libjsound.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/liblcms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/liblcms.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libmlib_image.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libmlib_image.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libnet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libnet.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libnio.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libnio.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libprefs.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libprefs.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libverify.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libverify.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/libzip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/libzip.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/modules -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/security/cacerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/security/cacerts -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/server/libjsig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/server/libjsig.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/server/libjvm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/server/libjvm.so -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/lib/tzdb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/lib/tzdb.dat -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/MyOpenLab.AppDir/usr/release -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/1DArray/1DConstString/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/Image_2_0/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/Label/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/RoundRect/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/SVGImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/Triangle/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/XRectangle/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2Dekoratoren/ellipse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/fffffffff/description_de.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/fffffffff/description_en.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/2user-defined/fffffffff/description_es.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Abfragen/abfrage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Abfragen/abfrage2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Abfragen/isGroesser/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac.exe -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Abfragen/isKleiner/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/DCT/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -g:none -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/DataLogger2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/FFT/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -g:none -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/IDCT/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/Ton-Generator/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/Trigger/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -g:none -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/Trunc/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/_AudioIn/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Analoge/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Automation/PID/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Automation/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Automation/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Automation/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Automation/sort.def: -------------------------------------------------------------------------------- 1 | FuzzyControl 2 | PID -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/BitOperations/AND/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/BitOperations/OR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/BitOperations/XOR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/AND/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/AND2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/AND3/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Bin2Dec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/DFlipFlop/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Dec2Bin/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Decoder/Bin2Dec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Decoder/Dec2Bin/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Demultiplexer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/FlipFlop/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/FlipFlop_old/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Impluse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/Multiplexer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NAND/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NAND2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NAND3/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NOR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NOR2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NOR3/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NOT/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/NXOR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/OR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/OR2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/OR3/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/XOR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Boolean/const/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/CanvasList/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawEllipse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawLine/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawPoints/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawRectangle/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/DrawString/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Canvas/Transform/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Color/ColToRGB/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Color/ColorConst/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Color/IntToRGB/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Color/RGBtoCol/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Color/RGBtoInt/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/Counter/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/Delay/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/Sleep/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/Timer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/CounterTimer/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/DateiIO/CSV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/DateiIO/CSVReader/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/DateiIO/FileOpenDialog/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/DateiIO/FileSaveDialog/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/DateiIO/GetFile/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Dekoratoren/Image_1_0/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Dekoratoren/Label/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Dekoratoren/XRectangle/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Dekoratoren/XText/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Dekoratoren/ellipse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/EventCatcher/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/FontConst/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/Int4XDec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/Javascript/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/LogicSubVM/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/Starter/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/SubVM/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Extras/Verteiler/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Beep/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Dec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Decision/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Delay/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/For/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Inc/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Next/src/Make - copia.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Next/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Node/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Output/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Procedure/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Return/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Robot/Get/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Robot/Go/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Start/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/Wend/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/While/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/FlowCharts/print/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Generator/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -g:none -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Gruppe/Gruppierer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Gruppe/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Gruppe/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Gruppe/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Aufhellen/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Cam/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Canny/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Convolve/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Grayscale/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/ImageLoader/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/ImageLoader2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/JPEG Codec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/JPEG Codec2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/JPEG Decoder/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/StaticImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Image/Threshold/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Interface/Firmata/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Interface/RS232v2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Node/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/ByteConst/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/ByteToInt/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Const/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/DBL2INT/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Hypot_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/INT2DBL/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Int2Byte/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/IntConst/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Random/This component is obsolete.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Random2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/Speicher/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/abs/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/addierer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/dec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/dividierer/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/inc/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/log/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/modulus_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Numerik/sqrt/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/OR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Physik/GedaempfteSchwingung/description_de.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Physik/GedaempfteSchwingung/description_en.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Physik/GedaempfteSchwingung/description_es.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Pins/InputPin/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Pins/OutputPin/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Sound/PlayFromFile/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Sound/PlaySound/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Concat/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Const/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Constant_JV/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Constant_JV/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Constant_JV/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Constant_JV/sort.def: -------------------------------------------------------------------------------- 1 | ASCCI_Const 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/DBL2STR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Format/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/INT2HEX/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/INT2STR/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/LEN/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/Message/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/STR2DBL/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/StrFcn_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/StringConversion/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/StringConversion/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/StringConversion/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/String/SubString/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/TP/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/VectorenMatrix/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/VectorenMatrix/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/VectorenMatrix/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/Verteiler/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/description_de.html: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/description_en.html: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/description_es.html: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/MUA/description_de.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/MUA/description_en.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/MUA/description_es.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | 3 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/CircuitElements/jmr-ce-package01/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/Documentations/dc-68f8102c-5160-4399-bc42-339db1b14e36/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/Documentations/project.myopenlab: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Industrial_Buttons_JV/LED_Ind_JV/src/doc/doc_en.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Industrial_Buttons_JV/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Industrial_Buttons_JV/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Industrial_Buttons_JV/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Tanks_JV/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Tanks_JV/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Tanks_JV/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Valves_JV/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Valves_JV/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/Valves_JV/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Automation/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/Button/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/Button2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/LED/src/doc/doc_en.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/Led_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/Taster/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Boolean/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/Label/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/Line_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Dekoratoren/ellipse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/Canvas/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/KeyPanel/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/ScrollImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/Seg7/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/Seg7AndDec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Extras/ShowImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Graph/TimeGraphX/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Graph/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Graph/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Graph/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Matrix_Vectors/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Matrix_Vectors/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Matrix_Vectors/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Anzeige/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Gauge/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Gauge2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Gauge_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/INTCombo/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Linear_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/RGB_Led/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Regler/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Steel_Gauges_JV/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Steel_Gauges_JV/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Steel_Gauges_JV/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Switch2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Switch_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/Tank_8_JV/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Numerisch/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Robotics/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Robotics/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2Robotics/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/Ausgabe/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/Eingabe2/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/Eingabe2_1/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/2String/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Dekoratoren/Label/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Dekoratoren/XText/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Dekoratoren/ellipse/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Input/BalkenRegler/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Input/Buttons/Button/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Input/Buttons/Taster/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Input/Eingabe/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Input/INTCombo/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Anzeige/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Ausgabe/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Canvas/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/DataLogger/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Gauge/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -g:none -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/LED/src/doc/doc_en.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/RGB_Led/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Scrollmage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Seg7/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/Seg7AndDec/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/ShowImage/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/StatusAnzeige/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/Output/_LED/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/description_de.html: -------------------------------------------------------------------------------- 1 | qwertz 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/description_en.html: -------------------------------------------------------------------------------- 1 | qwertz 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/description_es.html: -------------------------------------------------------------------------------- 1 | qwertz 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/jmr-fe-package01/Display3/description_de.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/jmr-fe-package01/Display3/description_en.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/FrontElements/jmr-fe-package01/Display3/description_es.html: -------------------------------------------------------------------------------- 1 | Text here! 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Arduino-Firmata/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Arduino-Firmata/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Arduino-Firmata/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Arduino-Firmata/project.myopenlab: -------------------------------------------------------------------------------- 1 | MAINVM= Main.vlogic 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Arduino-Firmata/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Arduino-Firmata/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Arduino-Firmata/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/Circuitos Electricos Basicos/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/Robotica/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/Varios/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/Vectores y Matrices/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Espanol Ejemplos/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/Anlagensteuerungen/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/RS232/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/description_de.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/description_en.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/description_es.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/Examples/project.myopenlab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/VirtualMachines/project.myopenlab: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/compTemplate/src/Make.bat: -------------------------------------------------------------------------------- 1 | javac -d ..\bin *.java 2 | cmd -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Elements/update.txt: -------------------------------------------------------------------------------- 1 | 3.004 -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/Test/project.myopenlab: -------------------------------------------------------------------------------- 1 | MAINVM= Main.vlogic 2 | -------------------------------------------------------------------------------- /MyOpenLab.AppDir/usr/share/myopenlab/distribution/projectD/project.myopenlab: -------------------------------------------------------------------------------- 1 | MAINVM= Main.vlogic 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/README.md -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/Legende16.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/Legende16.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/Text.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/auge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/auge.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/book.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/book.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/document-new.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/edit-copy.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/edit-cut.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/edit-paste.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/edit-redo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/edit-undo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/folder16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/folder16x16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/icon.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/legenge16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/legenge16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/page_java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/page_java.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/process-stop.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/publish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/publish.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/save.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/save16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/save16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/storage.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/unlock.png -------------------------------------------------------------------------------- /src/Assets/Bilder/16x16/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/16x16/window-new.png -------------------------------------------------------------------------------- /src/Assets/Bilder/Check.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Check.pspimage -------------------------------------------------------------------------------- /src/Assets/Bilder/Cross.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Cross.pspimage -------------------------------------------------------------------------------- /src/Assets/Bilder/Cross9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Cross9x9.png -------------------------------------------------------------------------------- /src/Assets/Bilder/ElementImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/ElementImage.png -------------------------------------------------------------------------------- /src/Assets/Bilder/Step16.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Step16.JPG -------------------------------------------------------------------------------- /src/Assets/Bilder/Step16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Step16.PNG -------------------------------------------------------------------------------- /src/Assets/Bilder/Step24.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Step24.JPG -------------------------------------------------------------------------------- /src/Assets/Bilder/Step24.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/Step24.PNG -------------------------------------------------------------------------------- /src/Assets/Bilder/add_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/add_package.png -------------------------------------------------------------------------------- /src/Assets/Bilder/arrow_black_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/arrow_black_left.png -------------------------------------------------------------------------------- /src/Assets/Bilder/arrow_black_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/arrow_black_right.png -------------------------------------------------------------------------------- /src/Assets/Bilder/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/arrow_refresh.png -------------------------------------------------------------------------------- /src/Assets/Bilder/box_front_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/box_front_open.png -------------------------------------------------------------------------------- /src/Assets/Bilder/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/de.png -------------------------------------------------------------------------------- /src/Assets/Bilder/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/document-new.png -------------------------------------------------------------------------------- /src/Assets/Bilder/document-new_VM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/document-new_VM.png -------------------------------------------------------------------------------- /src/Assets/Bilder/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/document-open.png -------------------------------------------------------------------------------- /src/Assets/Bilder/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/edit-redo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/edit-undo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/es.png -------------------------------------------------------------------------------- /src/Assets/Bilder/file_save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/file_save_as.png -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Check.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Cross.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Cross9x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Cross9x9.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Information16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Information16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Information24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Information24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Legende.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Legende.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Resume.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Resume.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/Resume16.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/Resume16.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/about16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/about16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/about24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/about24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/ajax-loader.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/back16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/back16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/blast16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/blast16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/blast24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/blast24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/bold16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/bold16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/bold24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/bold24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/close16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/close16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/close24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/close24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/color16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/color16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/color24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/color24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/compile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/compile.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/compile16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/compile16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/copy16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/copy16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/copy24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/copy24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/cut16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/cut16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/cut24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/cut24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/delete16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/delete16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/delete24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/delete24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/emptyIcon16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/emptyIcon16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/emptyIcon24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/emptyIcon24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/exit16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/exit16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/exit24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/exit24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/export16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/export16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/export24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/export24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/fastForward16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/fastForward16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/fastForward24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/fastForward24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/find16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/find16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/find24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/find24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/font16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/font16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/font24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/font24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/forward16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/forward16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/graphBoolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/graphBoolean.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/graphDouble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/graphDouble.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/hammer16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/hammer16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/hammer24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/hammer24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/help16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/help16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/help24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/help24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/home16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/home16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/import16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/import16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/import24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/import24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/italic16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/italic16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/italic24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/italic24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/lightning16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/lightning16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/lightning24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/lightning24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/mask16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/mask16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/mask24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/mask24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/netBeans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/netBeans.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/new16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/new16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/new24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/new24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/open16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/open16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/open24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/open24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/open24Project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/open24Project.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/open24VM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/open24VM.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/paste16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/paste16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/paste24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/paste24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/pause16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/pause16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/pause24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/pause24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/play16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/play16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/play24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/play24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/playX24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/playX24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/print16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/print16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/print24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/print24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/properties16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/properties16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/properties24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/properties24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/redo16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/redo16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/redo24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/redo24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/reverse16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/reverse16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/reverse24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/reverse24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/rewind16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/rewind16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/rewind24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/rewind24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/save16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/save16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/save24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/save24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/saveAs16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/saveAs16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/saveAsJPG16.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/saveAsJPG16.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/stop16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/stop16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/stop24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/stop24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/tileVertical16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/tileVertical16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/tileVertical24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/tileVertical24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/underline16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/underline16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/underline24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/underline24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/undo16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/undo16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/undo24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/undo24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/up16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/up16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zip16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zip16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zoom1_124.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zoom1_124.GIF -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zoomIn16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zoomIn16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zoomIn24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zoomIn24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zoomOut16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zoomOut16.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gif/zoomOut24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gif/zoomOut24.gif -------------------------------------------------------------------------------- /src/Assets/Bilder/gplv3-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/gplv3-88x31.png -------------------------------------------------------------------------------- /src/Assets/Bilder/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/icon.png -------------------------------------------------------------------------------- /src/Assets/Bilder/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/icon_16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/icon_2.png -------------------------------------------------------------------------------- /src/Assets/Bilder/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/icon_32.png -------------------------------------------------------------------------------- /src/Assets/Bilder/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/icon_64.png -------------------------------------------------------------------------------- /src/Assets/Bilder/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/information.png -------------------------------------------------------------------------------- /src/Assets/Bilder/isProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/isProject.png -------------------------------------------------------------------------------- /src/Assets/Bilder/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/legend.png -------------------------------------------------------------------------------- /src/Assets/Bilder/lgplv3-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/lgplv3-88x31.png -------------------------------------------------------------------------------- /src/Assets/Bilder/logoUcatolica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/logoUcatolica.jpg -------------------------------------------------------------------------------- /src/Assets/Bilder/logoUcatolica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/logoUcatolica.png -------------------------------------------------------------------------------- /src/Assets/Bilder/notAProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/notAProject.png -------------------------------------------------------------------------------- /src/Assets/Bilder/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/package.png -------------------------------------------------------------------------------- /src/Assets/Bilder/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/redo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/save.png -------------------------------------------------------------------------------- /src/Assets/Bilder/save16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/save16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/separator.png -------------------------------------------------------------------------------- /src/Assets/Bilder/startX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/startX.png -------------------------------------------------------------------------------- /src/Assets/Bilder/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/storage.png -------------------------------------------------------------------------------- /src/Assets/Bilder/storage24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/storage24x24.png -------------------------------------------------------------------------------- /src/Assets/Bilder/testPointWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/testPointWhite.png -------------------------------------------------------------------------------- /src/Assets/Bilder/testpoint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/testpoint.PNG -------------------------------------------------------------------------------- /src/Assets/Bilder/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/undo.png -------------------------------------------------------------------------------- /src/Assets/Bilder/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/us.png -------------------------------------------------------------------------------- /src/Assets/Bilder/utilities-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/utilities-terminal.png -------------------------------------------------------------------------------- /src/Assets/Bilder/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/variables.png -------------------------------------------------------------------------------- /src/Assets/Bilder/variables16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/variables16.png -------------------------------------------------------------------------------- /src/Assets/Bilder/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/Bilder/view-refresh.png -------------------------------------------------------------------------------- /src/Assets/legend/Dateien/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/Dateien/filelist.xml -------------------------------------------------------------------------------- /src/Assets/legend/Dateien/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/Dateien/image001.png -------------------------------------------------------------------------------- /src/Assets/legend/Dateien/image003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/Dateien/image003.jpg -------------------------------------------------------------------------------- /src/Assets/legend/index.1.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.1.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.17.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.17.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.18.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.18.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.19.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.19.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.20.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.20.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.21.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.21.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.22.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.22.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.23.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.23.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.24.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.24.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.25.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.25.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.26.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.26.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.27.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.27.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.28.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.28.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.29.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.29.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.30.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.30.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.31.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.31.GIF -------------------------------------------------------------------------------- /src/Assets/legend/index.32.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/index.32.GIF -------------------------------------------------------------------------------- /src/Assets/legend/types_de.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/types_de.htm -------------------------------------------------------------------------------- /src/Assets/legend/types_en.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/types_en.htm -------------------------------------------------------------------------------- /src/Assets/legend/types_es.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/legend/types_es.htm -------------------------------------------------------------------------------- /src/Assets/resources/mol_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Assets/resources/mol_custom.xml -------------------------------------------------------------------------------- /src/BasisStatus/StatusAddElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusAddElement.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusAddWire.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusAddWire.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusBasisIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusBasisIF.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusEditPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusEditPath.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusGummiBand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusGummiBand.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusGummiBandX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusGummiBandX.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusIdle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusIdle.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusIdle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusIdle.properties -------------------------------------------------------------------------------- /src/BasisStatus/StatusLineVertikal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusLineVertikal.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusMoveElements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusMoveElements.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusNOP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusNOP.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusNone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusNone.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusResizeBasis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusResizeBasis.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusResizeElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusResizeElement.java -------------------------------------------------------------------------------- /src/BasisStatus/StatusRun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/StatusRun.java -------------------------------------------------------------------------------- /src/BasisStatus/frmElementInfo.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/frmElementInfo.form -------------------------------------------------------------------------------- /src/BasisStatus/frmElementInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/BasisStatus/frmElementInfo.java -------------------------------------------------------------------------------- /src/CodeEditor/DialogSearch.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/DialogSearch.form -------------------------------------------------------------------------------- /src/CodeEditor/DialogSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/DialogSearch.java -------------------------------------------------------------------------------- /src/CodeEditor/DialogSearch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/DialogSearch.properties -------------------------------------------------------------------------------- /src/CodeEditor/ExpandingArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/ExpandingArray.java -------------------------------------------------------------------------------- /src/CodeEditor/JavaSyntaxDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/JavaSyntaxDocument.java -------------------------------------------------------------------------------- /src/CodeEditor/MyEditorPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/MyEditorPane.java -------------------------------------------------------------------------------- /src/CodeEditor/PanelEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/PanelEditor.java -------------------------------------------------------------------------------- /src/CodeEditor/PanelEditor.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/PanelEditor.properties -------------------------------------------------------------------------------- /src/CodeEditor/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/Scanner.java -------------------------------------------------------------------------------- /src/CodeEditor/StatusIdle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/StatusIdle.properties -------------------------------------------------------------------------------- /src/CodeEditor/frmCodeEditor.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/frmCodeEditor.form -------------------------------------------------------------------------------- /src/CodeEditor/frmCodeEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/frmCodeEditor.java -------------------------------------------------------------------------------- /src/CodeEditor/frmCodeEditor.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/frmCodeEditor.properties -------------------------------------------------------------------------------- /src/CodeEditor/frmElementInfo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CodeEditor/frmElementInfo.properties -------------------------------------------------------------------------------- /src/CreateNewGroup/ImageComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CreateNewGroup/ImageComponent.java -------------------------------------------------------------------------------- /src/CreateNewGroup/SummaryCart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CreateNewGroup/SummaryCart.java -------------------------------------------------------------------------------- /src/CreateNewGroup/std_lib_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CreateNewGroup/std_lib_icon_32.png -------------------------------------------------------------------------------- /src/CustomColorPicker/Bild1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CustomColorPicker/Bild1.gif -------------------------------------------------------------------------------- /src/CustomColorPicker/ColorPanel.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CustomColorPicker/ColorPanel.form -------------------------------------------------------------------------------- /src/CustomColorPicker/ColorPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CustomColorPicker/ColorPanel.java -------------------------------------------------------------------------------- /src/CustomColorPicker/gitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/CustomColorPicker/gitter.gif -------------------------------------------------------------------------------- /src/MyGraph/BackGraphXY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/BackGraphXY.java -------------------------------------------------------------------------------- /src/MyGraph/FrameMain.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/FrameMain.form -------------------------------------------------------------------------------- /src/MyGraph/FrameMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/FrameMain.java -------------------------------------------------------------------------------- /src/MyGraph/GraphBackground.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/GraphBackground.form -------------------------------------------------------------------------------- /src/MyGraph/GraphBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/GraphBackground.java -------------------------------------------------------------------------------- /src/MyGraph/GraphRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/GraphRenderer.java -------------------------------------------------------------------------------- /src/MyGraph/MyGraph.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/MyGraph.form -------------------------------------------------------------------------------- /src/MyGraph/MyGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/MyGraph.java -------------------------------------------------------------------------------- /src/MyGraph/MyGraphX.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/MyGraphX.form -------------------------------------------------------------------------------- /src/MyGraph/MyGraphX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/MyGraphX.java -------------------------------------------------------------------------------- /src/MyGraph/Turn90Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/Turn90Label.java -------------------------------------------------------------------------------- /src/MyGraph/XAxis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/XAxis.java -------------------------------------------------------------------------------- /src/MyGraph/YAxis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyGraph/YAxis.java -------------------------------------------------------------------------------- /src/MyParser/Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/Expression.java -------------------------------------------------------------------------------- /src/MyParser/Keywords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/Keywords.java -------------------------------------------------------------------------------- /src/MyParser/OpenVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/OpenVariable.java -------------------------------------------------------------------------------- /src/MyParser/Parser.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/Parser.BAK -------------------------------------------------------------------------------- /src/MyParser/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/Parser.java -------------------------------------------------------------------------------- /src/MyParser/VerilogParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/VerilogParser.java -------------------------------------------------------------------------------- /src/MyParser/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/MyParser/functions.h -------------------------------------------------------------------------------- /src/Peditor/BasisProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/BasisProperty.java -------------------------------------------------------------------------------- /src/Peditor/DialogPropertiesChoice.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/DialogPropertiesChoice.form -------------------------------------------------------------------------------- /src/Peditor/DialogPropertiesChoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/DialogPropertiesChoice.java -------------------------------------------------------------------------------- /src/Peditor/PropertyEditor.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/PropertyEditor.form -------------------------------------------------------------------------------- /src/Peditor/PropertyEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/PropertyEditor.java -------------------------------------------------------------------------------- /src/Peditor/PropertyEditor.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/PropertyEditor.properties -------------------------------------------------------------------------------- /src/Peditor/PropertyEditorItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/Peditor/PropertyEditorItem.java -------------------------------------------------------------------------------- /src/SimpleFileSystem/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/SimpleFileSystem/Test.java -------------------------------------------------------------------------------- /src/SimulatorSocket/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/SimulatorSocket/Client.java -------------------------------------------------------------------------------- /src/SimulatorSocket/FrameMain.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/SimulatorSocket/FrameMain.form -------------------------------------------------------------------------------- /src/SimulatorSocket/FrameMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/SimulatorSocket/FrameMain.java -------------------------------------------------------------------------------- /src/SimulatorSocket/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/SimulatorSocket/Server.java -------------------------------------------------------------------------------- /src/VisualLogic/Basis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Basis.java -------------------------------------------------------------------------------- /src/VisualLogic/BasisPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/BasisPanel.java -------------------------------------------------------------------------------- /src/VisualLogic/ColorRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ColorRenderer.java -------------------------------------------------------------------------------- /src/VisualLogic/ColoredListCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ColoredListCell.java -------------------------------------------------------------------------------- /src/VisualLogic/CommandIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/CommandIF.java -------------------------------------------------------------------------------- /src/VisualLogic/DFProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DFProperties.java -------------------------------------------------------------------------------- /src/VisualLogic/DataEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DataEntry.java -------------------------------------------------------------------------------- /src/VisualLogic/DataHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DataHistory.java -------------------------------------------------------------------------------- /src/VisualLogic/Draht.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Draht.java -------------------------------------------------------------------------------- /src/VisualLogic/DriverInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DriverInfo.java -------------------------------------------------------------------------------- /src/VisualLogic/DriverManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DriverManager.java -------------------------------------------------------------------------------- /src/VisualLogic/DummyElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/DummyElement.java -------------------------------------------------------------------------------- /src/VisualLogic/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Element.java -------------------------------------------------------------------------------- /src/VisualLogic/ElementActionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ElementActionEvent.java -------------------------------------------------------------------------------- /src/VisualLogic/ElementIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ElementIF.java -------------------------------------------------------------------------------- /src/VisualLogic/ElementPaletteIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ElementPaletteIF.java -------------------------------------------------------------------------------- /src/VisualLogic/ElementProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ElementProperty.java -------------------------------------------------------------------------------- /src/VisualLogic/ElementPropertyX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ElementPropertyX.java -------------------------------------------------------------------------------- /src/VisualLogic/ExtensionFileFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ExtensionFileFilter.java -------------------------------------------------------------------------------- /src/VisualLogic/ExternalIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ExternalIF.java -------------------------------------------------------------------------------- /src/VisualLogic/FontChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/FontChooser.java -------------------------------------------------------------------------------- /src/VisualLogic/JPin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/JPin.java -------------------------------------------------------------------------------- /src/VisualLogic/JavaFileView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/JavaFileView.java -------------------------------------------------------------------------------- /src/VisualLogic/Line.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Line.java -------------------------------------------------------------------------------- /src/VisualLogic/LineInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/LineInfo.java -------------------------------------------------------------------------------- /src/VisualLogic/Loader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Loader.java -------------------------------------------------------------------------------- /src/VisualLogic/MyImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/MyImage.java -------------------------------------------------------------------------------- /src/VisualLogic/MyMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/MyMenuItem.java -------------------------------------------------------------------------------- /src/VisualLogic/MyOpenLabDriverIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/MyOpenLabDriverIF.java -------------------------------------------------------------------------------- /src/VisualLogic/NOI18N/Basic.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/NOI18N/Basic.properties -------------------------------------------------------------------------------- /src/VisualLogic/NOI18N/DialogLanguage.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | cancel=Abbrechen 4 | -------------------------------------------------------------------------------- /src/VisualLogic/NOI18N/FrameErrorWarnings_es_ES.properties: -------------------------------------------------------------------------------- 1 | ERRORS_AND_WARNINGS=Errores y Advertencias 2 | CLEAR=Borrar 3 | -------------------------------------------------------------------------------- /src/VisualLogic/NOI18N/frmDTLengend.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | Close=Schlie\u00DFen 4 | -------------------------------------------------------------------------------- /src/VisualLogic/NOI18N/frmDTLengend_es_ES.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | Close=Cerrar 4 | -------------------------------------------------------------------------------- /src/VisualLogic/NewJavaCompSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/NewJavaCompSettings.java -------------------------------------------------------------------------------- /src/VisualLogic/OnlyDirectoryFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/OnlyDirectoryFilter.java -------------------------------------------------------------------------------- /src/VisualLogic/PanelIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PanelIF.java -------------------------------------------------------------------------------- /src/VisualLogic/PathPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PathPoint.java -------------------------------------------------------------------------------- /src/VisualLogic/PinIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PinIF.java -------------------------------------------------------------------------------- /src/VisualLogic/PinsSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PinsSettings.java -------------------------------------------------------------------------------- /src/VisualLogic/PinsSettingsItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PinsSettingsItem.java -------------------------------------------------------------------------------- /src/VisualLogic/PolyPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/PolyPoint.java -------------------------------------------------------------------------------- /src/VisualLogic/ProjectProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/ProjectProperties.java -------------------------------------------------------------------------------- /src/VisualLogic/SearchElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/SearchElement.java -------------------------------------------------------------------------------- /src/VisualLogic/SearchFoundItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/SearchFoundItem.java -------------------------------------------------------------------------------- /src/VisualLogic/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Settings.java -------------------------------------------------------------------------------- /src/VisualLogic/Shape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Shape.java -------------------------------------------------------------------------------- /src/VisualLogic/SimpleFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/SimpleFilter.java -------------------------------------------------------------------------------- /src/VisualLogic/SubElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/SubElement.java -------------------------------------------------------------------------------- /src/VisualLogic/Tools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Tools.java -------------------------------------------------------------------------------- /src/VisualLogic/Transparency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Transparency.java -------------------------------------------------------------------------------- /src/VisualLogic/VMEditorPanelIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VMEditorPanelIF.java -------------------------------------------------------------------------------- /src/VisualLogic/VMObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VMObject.java -------------------------------------------------------------------------------- /src/VisualLogic/VMObjectIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VMObjectIF.java -------------------------------------------------------------------------------- /src/VisualLogic/VSBasisIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VSBasisIF.java -------------------------------------------------------------------------------- /src/VisualLogic/VSDataType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VSDataType.java -------------------------------------------------------------------------------- /src/VisualLogic/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Version.java -------------------------------------------------------------------------------- /src/VisualLogic/VisualObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VisualObject.java -------------------------------------------------------------------------------- /src/VisualLogic/VlogicFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/VlogicFilter.java -------------------------------------------------------------------------------- /src/VisualLogic/Wrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/Wrapper.java -------------------------------------------------------------------------------- /src/VisualLogic/XMLSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/XMLSerializer.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogLanguage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogLanguage.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogLicence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogLicence.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogLupe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogLupe.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogOptions.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogPassword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogPassword.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogRename.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogRename.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogUpdate.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogVMName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogVMName.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogVariables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogVariables.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/DialogWait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/DialogWait.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/ElementPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/ElementPalette.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrameCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrameCode.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrameDoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrameDoc.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrameInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrameInfo.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrameMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrameMain.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrameRunning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrameRunning.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/FrmTestpoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/FrmTestpoints.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/PanelImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/PanelImage.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/SelectionPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/SelectionPane.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/SubDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/SubDialog.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/VMEditorPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/VMEditorPanel.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/VMProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/VMProperties.java -------------------------------------------------------------------------------- /src/VisualLogic/gui/frmDTLengend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/gui/frmDTLengend.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VS1DByte.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VS1DByte.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VS2DByte.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VS2DByte.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSBoolean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSBoolean.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSByte.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSByte.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSCanvas.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSColor.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSDouble.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSFile.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSFont.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSGroup.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSImage.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSImage24.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSImage24.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSInteger.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSObjRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSObjRef.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSObject.java -------------------------------------------------------------------------------- /src/VisualLogic/variables/VSString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/VisualLogic/variables/VSString.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/IniFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/IniFile.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/MyTableRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/MyTableRow.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/TestItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/TestItem.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/Tools2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/Tools2.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/UnzipFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/UnzipFiles.java -------------------------------------------------------------------------------- /src/de/myopenlab/update/frmUpdate.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/frmUpdate.form -------------------------------------------------------------------------------- /src/de/myopenlab/update/frmUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/de/myopenlab/update/frmUpdate.java -------------------------------------------------------------------------------- /src/images/Bar/Bild3.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/Bild3.pspimage -------------------------------------------------------------------------------- /src/images/Bar/bar0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar0.gif -------------------------------------------------------------------------------- /src/images/Bar/bar1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar1.gif -------------------------------------------------------------------------------- /src/images/Bar/bar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar2.gif -------------------------------------------------------------------------------- /src/images/Bar/bar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar3.gif -------------------------------------------------------------------------------- /src/images/Bar/bar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar4.gif -------------------------------------------------------------------------------- /src/images/Bar/bar5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar5.gif -------------------------------------------------------------------------------- /src/images/Bar/bar6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar6.gif -------------------------------------------------------------------------------- /src/images/Bar/bar7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar7.gif -------------------------------------------------------------------------------- /src/images/Bar/bar8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Bar/bar8.gif -------------------------------------------------------------------------------- /src/images/Batterie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Batterie.png -------------------------------------------------------------------------------- /src/images/Button round .pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Button round .pspimage -------------------------------------------------------------------------------- /src/images/Button round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Button round.png -------------------------------------------------------------------------------- /src/images/IconoLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/IconoLauncher.png -------------------------------------------------------------------------------- /src/images/IconoLauncher.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/IconoLauncher.xcf -------------------------------------------------------------------------------- /src/images/Lamp/Lamp icon 32x32.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Lamp/Lamp icon 32x32.pspimage -------------------------------------------------------------------------------- /src/images/Lamp/lampOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Lamp/lampOff.png -------------------------------------------------------------------------------- /src/images/Lamp/lampOff.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Lamp/lampOff.pspimage -------------------------------------------------------------------------------- /src/images/Lamp/lampOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Lamp/lampOn.png -------------------------------------------------------------------------------- /src/images/Lamp/lampOn.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/Lamp/lampOn.pspimage -------------------------------------------------------------------------------- /src/images/MyOpenLab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/MyOpenLab.ico -------------------------------------------------------------------------------- /src/images/autobatt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/autobatt.png -------------------------------------------------------------------------------- /src/images/copyR2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/copyR2018.png -------------------------------------------------------------------------------- /src/images/gplv3_88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/gplv3_88x31.png -------------------------------------------------------------------------------- /src/images/myopenlab_logo_Oficial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/myopenlab_logo_Oficial.png -------------------------------------------------------------------------------- /src/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/off.png -------------------------------------------------------------------------------- /src/images/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/on.png -------------------------------------------------------------------------------- /src/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/reset.png -------------------------------------------------------------------------------- /src/images/splashJV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/splashJV.png -------------------------------------------------------------------------------- /src/images/splashJV.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/splashJV.xcf -------------------------------------------------------------------------------- /src/images/takt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/takt.png -------------------------------------------------------------------------------- /src/images/v Panel/V Panel.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/v Panel/V Panel.pspimage -------------------------------------------------------------------------------- /src/images/v Panel/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/v Panel/panel.png -------------------------------------------------------------------------------- /src/images/v Panel/simple Panel.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/v Panel/simple Panel.pspimage -------------------------------------------------------------------------------- /src/images/webPageJV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/images/webPageJV.png -------------------------------------------------------------------------------- /src/lib/linux/libjSSC-2.8_armhf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/linux/libjSSC-2.8_armhf.so -------------------------------------------------------------------------------- /src/lib/linux/libjSSC-2.8_armsf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/linux/libjSSC-2.8_armsf.so -------------------------------------------------------------------------------- /src/lib/linux/libjSSC-2.8_x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/linux/libjSSC-2.8_x86.so -------------------------------------------------------------------------------- /src/lib/linux/libjSSC-2.8_x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/linux/libjSSC-2.8_x86_64.so -------------------------------------------------------------------------------- /src/lib/mac_os_x/libjSSC-2.8_ppc.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/mac_os_x/libjSSC-2.8_ppc.jnilib -------------------------------------------------------------------------------- /src/lib/mac_os_x/libjSSC-2.8_x86.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/mac_os_x/libjSSC-2.8_x86.jnilib -------------------------------------------------------------------------------- /src/lib/windows/jSSC-2.8_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/windows/jSSC-2.8_x86.dll -------------------------------------------------------------------------------- /src/lib/windows/jSSC-2.8_x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/lib/windows/jSSC-2.8_x86_64.dll -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/license.txt -------------------------------------------------------------------------------- /src/licenses/bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/licenses/bsd.txt -------------------------------------------------------------------------------- /src/licenses/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/licenses/lgpl.txt -------------------------------------------------------------------------------- /src/projectfolder/FrameMain.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/FrameMain.form -------------------------------------------------------------------------------- /src/projectfolder/FrameMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/FrameMain.java -------------------------------------------------------------------------------- /src/projectfolder/MyNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/MyNode.java -------------------------------------------------------------------------------- /src/projectfolder/ProjectPalette.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/ProjectPalette.form -------------------------------------------------------------------------------- /src/projectfolder/ProjectPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/ProjectPalette.java -------------------------------------------------------------------------------- /src/projectfolder/ProjectPaletteIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/ProjectPaletteIF.java -------------------------------------------------------------------------------- /src/projectfolder/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/Test.jpg -------------------------------------------------------------------------------- /src/projectfolder/execfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/execfolder.png -------------------------------------------------------------------------------- /src/projectfolder/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/folder-open.png -------------------------------------------------------------------------------- /src/projectfolder/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/folder.png -------------------------------------------------------------------------------- /src/projectfolder/image-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/image-x-generic.png -------------------------------------------------------------------------------- /src/projectfolder/oldexecfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/oldexecfolder.png -------------------------------------------------------------------------------- /src/projectfolder/package-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/package-x-generic.png -------------------------------------------------------------------------------- /src/projectfolder/page_deny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/page_deny.gif -------------------------------------------------------------------------------- /src/projectfolder/projectCollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/projectCollapsed.png -------------------------------------------------------------------------------- /src/projectfolder/projectExpanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/projectExpanded.png -------------------------------------------------------------------------------- /src/projectfolder/text-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/text-html.png -------------------------------------------------------------------------------- /src/projectfolder/text-x-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/text-x-script.png -------------------------------------------------------------------------------- /src/projectfolder/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/projectfolder/user-home.png -------------------------------------------------------------------------------- /src/tools/BinAnzeige.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/BinAnzeige.java -------------------------------------------------------------------------------- /src/tools/BinSchalter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/BinSchalter.java -------------------------------------------------------------------------------- /src/tools/CustomAnalogComp_1_JV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/CustomAnalogComp_1_JV.java -------------------------------------------------------------------------------- /src/tools/CustomAnalogComp_2_JV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/CustomAnalogComp_2_JV.java -------------------------------------------------------------------------------- /src/tools/Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Expression.java -------------------------------------------------------------------------------- /src/tools/Expression.jay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Expression.jay -------------------------------------------------------------------------------- /src/tools/Gatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Gatter.java -------------------------------------------------------------------------------- /src/tools/Gatter2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Gatter2.java -------------------------------------------------------------------------------- /src/tools/Gatter3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Gatter3.java -------------------------------------------------------------------------------- /src/tools/GatterProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/GatterProperties.java -------------------------------------------------------------------------------- /src/tools/JVSMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/JVSMain.java -------------------------------------------------------------------------------- /src/tools/MCUMainFlow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/MCUMainFlow.java -------------------------------------------------------------------------------- /src/tools/MainFlow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/MainFlow.java -------------------------------------------------------------------------------- /src/tools/OLD_CustomAnalogComp.javaX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/OLD_CustomAnalogComp.javaX -------------------------------------------------------------------------------- /src/tools/Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Properties.java -------------------------------------------------------------------------------- /src/tools/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/Scanner.java -------------------------------------------------------------------------------- /src/tools/ZipFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babaissarkar/MyOpenLab/HEAD/src/tools/ZipFiles.java --------------------------------------------------------------------------------