Package elements

Examples of elements.Car


import visitors.CarElementPrintVisitor;

public class Visitor_Test {
 
     public static void main(String[] args){
       Car car = new Car();
      car.accept(new CarElementPrintVisitor());
      car.accept(new CarElementCheckInvariantVisitor());
     
      //Break
      car.accept(new CarElementBreakInvariantVisistor());
      car.accept(new CarElementCheckInvariantVisitor());
    }
View Full Code Here

TOP

Related Classes of elements.Car

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.