]> git.gag.com Git - debian/openrocket/blobdiff - src/net/sf/openrocket/rocketcomponent/CenteringRing.java
DGP - merged printing support from branch
[debian/openrocket] / src / net / sf / openrocket / rocketcomponent / CenteringRing.java
index 944f286025694ae9bf5a4641fde102b01827910d..3abcd44a213c0c28a648202c3f3875010b88cf99 100644 (file)
@@ -66,5 +66,15 @@ public class CenteringRing extends RadiusRingComponent {
        public boolean isCompatible(Class<? extends RocketComponent> type) {
                return false;
        }
-       
+    
+    /**
+     * Accept a visitor to this CenteringRing in the component hierarchy.
+     * 
+     * @param theVisitor  the visitor that will be called back with a reference to this CenteringRing
+     */
+    @Override 
+    public void accept (final ComponentVisitor theVisitor) {
+        theVisitor.visit(this);
+    }
+
 }