// Copyright 1996, Marimba Inc. All Rights Reserved.


// Confidential and Proprietary Information of Marimba, Inc.


// @(#)KeymapItem.java, 1.4, 12/15/96





package marimba.text.keymap;





/**


 * This is the base class for all items which appear in keymaps.


 *


 * @author	Jonathan Payne


 * @version 1.4, 12/15/96


 */


public class KeymapItem {


    public boolean isKeymap() {


	return false;


    }


}


