001    /*----------------------------------------------------------------------------*/
002    /* Copyright (c) FIRST 2008-2012. All Rights Reserved.                        */
003    /* Open Source Software - may be modified and shared by FRC teams. The code   */
004    /* must be accompanied by the FIRST BSD license file in the root directory of */
005    /* the project.                                                               */
006    /*----------------------------------------------------------------------------*/
007    
008    package edu.wpi.first.wpilibj.parsing;
009    
010    /**
011     * The IMechanism interface is implemented by any class to be classified as a
012     * mechanism.  These are user-defined, and contain other devices (which implement
013     * IDevice).  They are generally over-arching systems, such as the drive train or
014     * arm
015     * @author Ryan O'Meara
016     */
017    public interface IMechanism {}