|
Hi, I have a question on the details of calling a plugin's method from
another plugin. I've read this post ( https://list.nih.gov/cgi-bin/wa?A2=ind0306&L=IMAGEJ&D=0&I=-3&P=31044 ) dated 27 Jun 2003 in which Adrian explained how to use a plugin from another by means of its public methods (see code below). I tried someting similar with the Object_Counter3D plugin ( http://rsb.info.nih.gov/ij/plugins/track/objects.html ), since it is prepared to be used that way. However, I am forced to place the file MyPlugin.java and Object_Counter3D.java in the same folder. Otherwise, the compiler gives an error ("Class ReUsable not found") Is there a way to put each plugin in a different folder? Is it necessary to import Object_Counter3D in my plugin? Thank you in advance for your answer, Pablo Adrian proposed the following plugin structure: public class ReUsable implements PlugIn { run() { GenericDialog gd = new GenericDialog("..."); ... initThings(); setParams(p1,p2,...); process(); } public initThings() {...} public setParams() {...} public process() {...} } And the code to use it: public class MyPlugin implements PlugIn { ReUsable pi = new ReUsable(); pi.initThings(); pi.setParams(...); pi.process(...); } |
|
Hi Pablo,
Is there a way to put each plugin in a different folder? Yes Is it necessary to import Object_Counter3D in my plugin? No I created a little test class PlugInFilter to show how to do it, and tested it by calling both an ImageJ PlugInFilter and one of my own PlugInFilter. import ij.IJ; import ij.ImagePlus; import ij.plugin.filter.PlugInFilter; import ij.process.ImageProcessor; /** Shows how how to call one pluginFilter from another. */ public class PlugInFilterCaller_ implements PlugInFilter { String _pluginName; String _arg; int _returnValueForSetup; /** Default is to call dilate from ImageJ Binary. */ public PlugInFilterCaller_() { this("ij.plugin.filter.Binary", "dilate", DOES_8G); } // /** Default is to call ShapeLogic segmenter. */ // public PlugInFilterCaller_() { // this("SBSegment_", "", DOES_8G+DOES_RGB+DOES_STACKS+SUPPORTS_MASKING); // } /** Use this to setup your own plugin runner. */ public PlugInFilterCaller_(String pluginName, String arg, int returnValueForSetup) { _pluginName = pluginName; _arg = arg; _returnValueForSetup = returnValueForSetup; } /** Empty everything is done in setup. */ public void run(ImageProcessor ip) { } public int setup(String arg, ImagePlus imp) { IJ.runPlugIn(_pluginName, _arg); return _returnValueForSetup; } } -Sami Badawi http://www.shapelogic.org On Thu, Apr 10, 2008 at 4:12 PM, Pablo Manuel Jais <[hidden email]> wrote: > Hi, I have a question on the details of calling a plugin's method from > another plugin. I've read this post ( > https://list.nih.gov/cgi-bin/wa?A2=ind0306&L=IMAGEJ&D=0&I=-3&P=31044 ) > dated 27 Jun 2003 in which Adrian explained how to use a plugin from > another by means of its public methods (see code below). > > I tried someting similar with the Object_Counter3D plugin ( > http://rsb.info.nih.gov/ij/plugins/track/objects.html ), since it is > prepared to be used that way. However, I am forced to place the file > MyPlugin.java and Object_Counter3D.java in the same folder. Otherwise, the > compiler gives an error ("Class ReUsable not found") Is there a way to put > each plugin in a different folder? Is it necessary to import > Object_Counter3D in my plugin? > > Thank you in advance for your answer, > Pablo > > > Adrian proposed the following plugin structure: > public class ReUsable implements PlugIn { > run() { > GenericDialog gd = new GenericDialog("..."); > ... > initThings(); > setParams(p1,p2,...); > process(); > } > > public initThings() {...} > public setParams() {...} > public process() {...} > } > > And the code to use it: > public class MyPlugin implements PlugIn { > ReUsable pi = new ReUsable(); > pi.initThings(); > pi.setParams(...); > pi.process(...); > } > |
|
Sami, thank you very much for your answer. However, the class you propose
works by calling the run method of the plugin. The Binary plugin is prepared to internally execute different methods when an argument is passed in the IJ.runPlugIn(_pluginName, _arg) line. Explicitly, its run method is the following: public void run(ImageProcessor ip) { //Binary plugin ... if (arg.equals("erode")) erode(ip); else if (arg.equals("dilate")) dilate(ip); else if (arg.equals("open")) open(ip); ... } This is not the case of the Object_Counter3D plugin, though. This particular plugin has public methods so I can access them from another plugin directly, whithout a call to IJ.runPlugIn or ObjectCounter3D.run. In fact, calling runPlugin is impossible since the run method is simply: public void run(String arg) { //Object_Counter3D plugin if (! setupGUI(arg)) return; analyze(); } and the setupGUI method is always interactive (and makes no use of the arg string). Of course I could edit Object_Counter3D and change its behaviour, but I don't think one should change every plugin on a whim, but only if its necessary or if it adds functionality. As I stated on my first post, I can already call the analyze method from my plugin, but only if both class files are located in the same folder. Is there a way to place them in different folders? Pablo On Fri, 11 Apr 2008, Sami Badawi wrote: > Hi Pablo, > > Is there a way to put each plugin in a different folder? Yes > Is it necessary to import Object_Counter3D in my plugin? No > > I created a little test class PlugInFilter to show how to do it, and > tested it by calling both an ImageJ PlugInFilter and one of my own > PlugInFilter. > > import ij.IJ; > import ij.ImagePlus; > import ij.plugin.filter.PlugInFilter; > import ij.process.ImageProcessor; > > /** Shows how how to call one pluginFilter from another. */ > public class PlugInFilterCaller_ implements PlugInFilter { > > String _pluginName; > String _arg; > int _returnValueForSetup; > > /** Default is to call dilate from ImageJ Binary. */ > public PlugInFilterCaller_() { > this("ij.plugin.filter.Binary", "dilate", DOES_8G); > } > > // /** Default is to call ShapeLogic segmenter. */ > // public PlugInFilterCaller_() { > // this("SBSegment_", "", DOES_8G+DOES_RGB+DOES_STACKS+SUPPORTS_MASKING); > // } > > /** Use this to setup your own plugin runner. */ > public PlugInFilterCaller_(String pluginName, String arg, int > returnValueForSetup) { > _pluginName = pluginName; > _arg = arg; > _returnValueForSetup = returnValueForSetup; > } > > /** Empty everything is done in setup. */ > public void run(ImageProcessor ip) { > } > > public int setup(String arg, ImagePlus imp) { > IJ.runPlugIn(_pluginName, _arg); > return _returnValueForSetup; > } > } > > -Sami Badawi > http://www.shapelogic.org > > On Thu, Apr 10, 2008 at 4:12 PM, Pablo Manuel Jais <[hidden email]> wrote: > > Hi, I have a question on the details of calling a plugin's method from > > another plugin. I've read this post ( > > https://list.nih.gov/cgi-bin/wa?A2=ind0306&L=IMAGEJ&D=0&I=-3&P=31044 ) > > dated 27 Jun 2003 in which Adrian explained how to use a plugin from > > another by means of its public methods (see code below). > > > > I tried someting similar with the Object_Counter3D plugin ( > > http://rsb.info.nih.gov/ij/plugins/track/objects.html ), since it is > > prepared to be used that way. However, I am forced to place the file > > MyPlugin.java and Object_Counter3D.java in the same folder. Otherwise, the > > compiler gives an error ("Class ReUsable not found") Is there a way to put > > each plugin in a different folder? Is it necessary to import > > Object_Counter3D in my plugin? > > > > Thank you in advance for your answer, > > Pablo > > > > > > Adrian proposed the following plugin structure: > > public class ReUsable implements PlugIn { > > run() { > > GenericDialog gd = new GenericDialog("..."); > > ... > > initThings(); > > setParams(p1,p2,...); > > process(); > > } > > > > public initThings() {...} > > public setParams() {...} > > public process() {...} > > } > > > > And the code to use it: > > public class MyPlugin implements PlugIn { > > ReUsable pi = new ReUsable(); > > pi.initThings(); > > pi.setParams(...); > > pi.process(...); > > } > > > |
|
Hi Pablo,
I looked at Object_Counter3D. It is a PlugIn, not a PlugInFilter as my example, but that should not be a problem. The class Object_Counter3D does not have a package definition so it should live in the default package. Say that you want to have your PlugIn live in a folder called org.pablo.Pablo_Counter3D This was possible up to Java 1.3, but starting from 1.4 this became illegal. A class in the default package can only be accessed from another class in the default package. Bug report to Sun: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4491314 Sun's answer: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4743555 You could change your JDK to 1.3, or have both files in the same folder. -Sami Badawi http://www.shapelogic.org |
|
In reply to this post by Pablo Manuel Jais
Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 ____________________ ____________________ __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** __ ** Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- Log In or Sign Up; Link: https://daofile.com/free14348.html VIP: - Young Nude Vagina' Link; 1: https://daofile.com/go/58017o3w2wa1 VIP: - Taboo Teen Archive' Link; 2: https://daofile.com/go/at6nq7tzdrwq Link; 3: https://daofile.com/go/uqvdfvlt1b7j VIP: - Private Sex Orgy; - Self Teen Girls' Link; 4: https://daofile.com/go/rwmcfthjrcew Link; 5: https://daofile.com/go/7x4q0mtks6bo Japanese Bath Culture; Public Bath' Link; 6: https://daofile.com/go/zvcjqfm0s50w Link; 7: https://daofile.com/go/62mt4oaxq78n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Log In or Sign Up; Link: https://xubster.com/free546.html Amateur Young Girls' Link; 001: https://xubster.com/users/546/12421/0001 Link; 002: https://xubster.com/users/546/12462/0002 Covid; 2017 - 2032 - Girls and Boys' Link; 003: https://xubster.com/users/546/12422/0013 Link; 004: https://xubster.com/users/546/12473/0014 18-19 yo Teens Only' Link; 005: https://xubster.com/users/546/12423/0015 Link; 006: https://xubster.com/users/546/12474/0016 Real Life Cam - Real Private Life on WebCam' Link; 007: https://xubster.com/users/546/12418/0032 Link; 008: https://xubster.com/users/546/12490/0033 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.* Real Life Cam - Real Private Life on WebCam' "Covid" 2017 - 2032 Girls and Boys, Russian Family Incest, Private Video Collection' Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection' Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls' New Free Games, Private Sex Orgy, Self Teen Girls; ajb Archive' Private Video Collection, Very Explicit Cams' 18-19 yo Teens Only, Asian Tiktok Teens' Home Made Model' Download from (( https://daofile.com/free14348.html )) Link: https://daofile.com/go/3w4soyhvuake Download from (( https://xubster.com/free546.html )) Link: https://xubster.com/users/546/9802 Download from (( https://file.al/premium56284.html )) Link: https://file.al/public/56284/31885 _______________________ _______________________ i90 Asian Tiktok Teens Real Life Cam - Real Private Life on Web-Cam |
| Free forum by Nabble | Edit this page |
